Browse Source

Merge pull request #173099 in DEC/fineui from master to feature/x

* commit '68fb5c1ffbcebc0a431debf20736089a6978154d':
  REPORT-80245 fix: jquery低版本漏洞,"提升"一下版本号
master
superman 2 years ago
parent
commit
5b48ab0857
  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