Skip to content

Commit

Permalink
Merge branch 'feature/DISF-1268_totem-webpack' into hotfix/2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorand committed Dec 20, 2018
2 parents d5a1c5a + 2f3df9a commit b6971b0
Show file tree
Hide file tree
Showing 10 changed files with 4,099 additions and 27 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/lib/vendors/
node_modules/
*.iml
.idea
Expand Down
23 changes: 0 additions & 23 deletions bower.json

This file was deleted.

57 changes: 57 additions & 0 deletions dist/session.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/session.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/otp.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*jslint browser: true */
/*global define */

define(['cryptojs.sha512', 'cryptojs.hmac'], function (CryptoJS) {
define(['cryptojs'], function (CryptoJS) {
'use strict';

var /**
Expand Down
2 changes: 1 addition & 1 deletion lib/session.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*jslint browser: true */
/*global define */

define(['srp', 'jquery', 'otp', 'cryptojs.sha256', 'cryptojs.enc-base64'], function (Srp, jQuery, Otp, CryptoJS) {
define(['srp', 'jquery', 'otp', 'cryptojs'], function (Srp, jQuery, Otp, CryptoJS) {
'use strict';

var /**
Expand Down
2 changes: 1 addition & 1 deletion lib/srp.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*jslint browser: true */
/*global define */

define(['bignum', 'cryptojs.sha1', 'cryptojs.sha512'], function (Bn, CryptoJS) {
define(['bignum', 'cryptojs'], function (Bn, CryptoJS) {
'use strict';

/**
Expand Down
Loading

0 comments on commit b6971b0

Please sign in to comment.