Skip to content

Commit

Permalink
adapted version numbers & build new versino
Browse files Browse the repository at this point in the history
  • Loading branch information
wachterjohannes committed Jun 26, 2014
1 parent 7e7e52d commit fa85ecb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/js/husky/dist/husky.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 2.1.9 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
Expand Down Expand Up @@ -47252,3 +47251,4 @@ define('husky_extensions/util',[],function() {
}
};
});

4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "husky",
"version": "0.3.0",
"version": "0.4.0",
"main": "js/husky.js",
"dependencies": {
"backbone": "~1.0.0",
"underscore": "~1.5.1",
"aura": "latest",
"husky-validation": "#develop",
"husky-validation": "0.4.*",
"globalize": "0.1.*",
"massiveart-uritemplate": "0.3.*",
"typeahead.js": "~0.9.3",
Expand Down
2 changes: 1 addition & 1 deletion dist/husky.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 2.1.9 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
Expand Down Expand Up @@ -47252,3 +47251,4 @@ define('husky_extensions/util',[],function() {
}
};
});

4 changes: 2 additions & 2 deletions doc/assets/js/apidocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ pjax.handleClasses = function (req, res, next) {
var status = res.ioResponse.status;

// Handles success and local filesystem XHRs.
if (!status || (status >= 200 && status < 300)) {
if (res.ioResponse.readyState === 4 && (!status || (status >= 200 && status < 300))) {
pjax.initClassTabView();
}

Expand All @@ -295,7 +295,7 @@ pjax.handleFiles = function (req, res, next) {
var status = res.ioResponse.status;

// Handles success and local filesystem XHRs.
if (!status || (status >= 200 && status < 300)) {
if (res.ioResponse.readyState === 4 && (!status || (status >= 200 && status < 300))) {
pjax.initLineNumbers();
}

Expand Down

0 comments on commit fa85ecb

Please sign in to comment.