Skip to content

Commit

Permalink
corrected some bugs RTM
Browse files Browse the repository at this point in the history
  • Loading branch information
frankabbruzzese committed Jun 20, 2016
1 parent 4e905e0 commit 2f26fd0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-validation-unobtrusive-extensions",
"version": "1.0.0-rc3",
"version": "1.0.0",
"homepage": "https://github.com/MvcControlsToolkit/Unobtrusive.Extensions",
"description": "Add-on to jQuery Unobtrusive Validation to enable globalization and dynamic content parsing",
"main": [
Expand Down Expand Up @@ -35,6 +35,6 @@
"dependencies": {
"jquery-validation-unobtrusive": ">=3.2.4",
"jquery": ">=1.8",
"mvcct-enhancer": ">=1.0.0-rc3"
"mvcct-enhancer": ">=1.0.0"
}
}
2 changes: 1 addition & 1 deletion jquery.validate.unobtrusive.extensions.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jquery.validate.unobtrusive.globalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
var y=parseInt(parts[0]);
var w = parseInt(parts[1]);

var simple = new Date(Date.UTC(y, 0, 1 + (w - 1) * 7));
var simple = new Date(y, 0, 1 + (w - 1) * 7);
var dow = simple.getDay();
var ISOweekStart = simple;
if (dow <= 4)
Expand Down
Loading

0 comments on commit 2f26fd0

Please sign in to comment.