Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-validation-unobtrusive",
"version": "3.2.6",
"version": "3.2.8",
"homepage": "https://github.com/aspnet/jquery-validation-unobtrusive",
"description": "Add-on to jQuery Validation to enable unobtrusive validation options in data-* attributes.",
"main": [
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.validate.unobtrusive.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Unobtrusive validation support library for jQuery and jQuery Validate
// Copyright (C) Microsoft Corporation. All rights reserved.
// @version v3.2.7
// @version v3.2.8

/*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 */
/*global document: false, jQuery: false */
Expand Down Expand Up @@ -128,7 +128,7 @@
execInContext = function (name, args) {
var func = defaultOptions[name];
func && $.isFunction(func) && func.apply(form, args);
}
};

if (!result) {
result = {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.validate.unobtrusive.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": "jquery-validation-unobtrusive",
"version": "3.2.7",
"version": "3.2.8",
"homepage": "https://github.com/aspnet/jquery-validation-unobtrusive",
"description": "Add-on to jQuery Validation to enable unobtrusive validation options in data-* attributes.",
"main": "dist/jquery.validate.unobtrusive.js",
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.validate.unobtrusive.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
execInContext = function (name, args) {
var func = defaultOptions[name];
func && $.isFunction(func) && func.apply(form, args);
}
};

if (!result) {
result = {
Expand Down