[FIX] web: remove bad check from jquery.blockUI

This check is wrong since jquery 1.11 is < 1.2

This commit closes #17271
This commit is contained in:
Jeremy Kersten 2017-05-30 16:42:54 +02:00
parent f6986c8cff
commit f0c34f0df8
1 changed files with 0 additions and 5 deletions

View File

@ -14,11 +14,6 @@
;(function($) {
if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
alert('blockUI requires jQuery v1.2.3 or later! You are using v' + $.fn.jquery);
return;
}
$.fn._fadeIn = $.fn.fadeIn;
var noOp = function() {};