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 bba1d35 commit 6ca3eff
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mvcct-enhancer",
"version": "1.0.0-rc3",
"version": "1.0.0",
"homepage": "https://github.com/MvcControlsToolkit/mvcct-enhancer",
"description": "a javascript package to handle standard html enhancements",
"main": [
Expand Down
2 changes: 1 addition & 1 deletion enhancer-modules/mvcct.enhancer.input.basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,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
10 changes: 5 additions & 5 deletions enhancer-modules/mvcct.enhancer.input.basic.min.js

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

4 changes: 2 additions & 2 deletions mvcct.enhancer.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@
else val = ''+val;
if (!object.hasOwnProperty(prop)) continue;
outputArray.push({
Key: prefix ? prefix + "." + prop : prop,
Value: val
"Key": prefix ? prefix + "." + prop : prop,
"Value": val
});
}
}
Expand Down
20 changes: 10 additions & 10 deletions mvcct.enhancer.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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mvcct-enhancer",
"version": "1.0.0-rc3",
"version": "1.0.0",
"description": "a javascript package to handle standard html enhancements",
"main": "mvcct.enhancer.js",
"repository": {
Expand Down

0 comments on commit 6ca3eff

Please sign in to comment.