Skip to content

Commit 0bb048f

Browse files
committed
[Fixes #74] Small semicolon inconsistency fix for some minifiers #74
1 parent e7444c9 commit 0bb048f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-validation-unobtrusive",
3-
"version": "3.2.6",
3+
"version": "3.2.8",
44
"homepage": "https://github.com/aspnet/jquery-validation-unobtrusive",
55
"description": "Add-on to jQuery Validation to enable unobtrusive validation options in data-* attributes.",
66
"main": [

dist/jquery.validate.unobtrusive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Unobtrusive validation support library for jQuery and jQuery Validate
22
// Copyright (C) Microsoft Corporation. All rights reserved.
3-
// @version v3.2.7
3+
// @version v3.2.8
44

55
/*jslint white: true, browser: true, onevar: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: false */
66
/*global document: false, jQuery: false */
@@ -128,7 +128,7 @@
128128
execInContext = function (name, args) {
129129
var func = defaultOptions[name];
130130
func && $.isFunction(func) && func.apply(form, args);
131-
}
131+
};
132132

133133
if (!result) {
134134
result = {

dist/jquery.validate.unobtrusive.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-validation-unobtrusive",
3-
"version": "3.2.7",
3+
"version": "3.2.8",
44
"homepage": "https://github.com/aspnet/jquery-validation-unobtrusive",
55
"description": "Add-on to jQuery Validation to enable unobtrusive validation options in data-* attributes.",
66
"main": "dist/jquery.validate.unobtrusive.js",

src/jquery.validate.unobtrusive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
execInContext = function (name, args) {
129129
var func = defaultOptions[name];
130130
func && $.isFunction(func) && func.apply(form, args);
131-
}
131+
};
132132

133133
if (!result) {
134134
result = {

0 commit comments

Comments
 (0)