Browse Source

Pull request #3070: REPORT-80245 fix: jquery低版本漏洞,"提升"一下版本号

Merge in VISUAL/fineui from ~DAILER/fineui:master to master

* commit '3dd620afd11b303d962cde5b9c38e5e476b34990':
  REPORT-80245 fix: jquery低版本漏洞,"提升"一下版本号
es6
Dailer-刘荣歆 2 years ago
parent
commit
68fb5c1ffb
  1. 9
      src/core/platform/web/jquery/_jquery.js

9
src/core/platform/web/jquery/_jquery.js vendored

@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v1.12.4
* jQuery JavaScript Library v3.6.1
* http://jquery.com/
*
* Includes Sizzle.js
@ -63,16 +63,15 @@
var support = {};
var
version = "1.12.4",
version = "3.6.1",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
jQuery = function (selector, context) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
return new jQuery.fn.init(selector, context);
},
// Support: Android<4.1, IE<9

Loading…
Cancel
Save