Skip to content

Commit

Permalink
Merge branch 'release/3.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
evanvosberg committed Oct 7, 2016
2 parents 6362ada + 950833e commit 67d2e99
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Including all libraries, for access to extra methods:
// Above-mentioned will work or use this simple form
require.config({
paths: {
'require-js': 'path-to/bower_components/crypto-js/crypto-js'
'crypto-js': 'path-to/bower_components/crypto-js/crypto-js'
}
});

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crypto-js",
"version": "3.1.6",
"version": "3.1.7",
"description": "JavaScript library of crypto standards.",
"license": "MIT",
"homepage": "http://github.com/brix/crypto-js",
Expand Down
2 changes: 1 addition & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}

// Create default initializer
if (!subtype.hasOwnProperty('init')) {
if (!subtype.hasOwnProperty('init') || this.init === subtype.init) {
subtype.init = function () {
subtype.$super.init.apply(this, arguments);
};
Expand Down
2 changes: 1 addition & 1 deletion crypto-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}

// Create default initializer
if (!subtype.hasOwnProperty('init')) {
if (!subtype.hasOwnProperty('init') || this.init === subtype.init) {
subtype.init = function () {
subtype.$super.init.apply(this, arguments);
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crypto-js",
"version": "3.1.6",
"version": "3.1.7",
"description": "JavaScript library of crypto standards.",
"license": "MIT",
"author": {
Expand Down

0 comments on commit 67d2e99

Please sign in to comment.