adoption to design of sp-magic
This commit is contained in:
parent
bc6fa550f9
commit
f65d081896
143 changed files with 13685 additions and 2590 deletions
2
bower_components/jquery/src/event/ajax.js
vendored
2
bower_components/jquery/src/event/ajax.js
vendored
|
@ -3,6 +3,8 @@ define( [
|
|||
"../event"
|
||||
], function( jQuery ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Attach a bunch of functions for handling common AJAX events
|
||||
jQuery.each( [
|
||||
"ajaxStart",
|
||||
|
|
6
bower_components/jquery/src/event/alias.js
vendored
6
bower_components/jquery/src/event/alias.js
vendored
|
@ -5,9 +5,11 @@ define( [
|
|||
"./trigger"
|
||||
], function( jQuery ) {
|
||||
|
||||
jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " +
|
||||
"use strict";
|
||||
|
||||
jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
|
||||
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
|
||||
"change select submit keydown keypress keyup error contextmenu" ).split( " " ),
|
||||
"change select submit keydown keypress keyup contextmenu" ).split( " " ),
|
||||
function( i, name ) {
|
||||
|
||||
// Handle event binding
|
||||
|
|
8
bower_components/jquery/src/event/focusin.js
vendored
8
bower_components/jquery/src/event/focusin.js
vendored
|
@ -7,14 +7,16 @@ define( [
|
|||
"./trigger"
|
||||
], function( jQuery, dataPriv, support ) {
|
||||
|
||||
// Support: Firefox
|
||||
"use strict";
|
||||
|
||||
// Support: Firefox <=44
|
||||
// Firefox doesn't have focus(in | out) events
|
||||
// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
|
||||
//
|
||||
// Support: Chrome, Safari
|
||||
// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
|
||||
// focus(in | out) events fire after focus & blur events,
|
||||
// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
|
||||
// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857
|
||||
// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
|
||||
if ( !support.focusin ) {
|
||||
jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
|
||||
|
||||
|
|
2
bower_components/jquery/src/event/support.js
vendored
2
bower_components/jquery/src/event/support.js
vendored
|
@ -2,6 +2,8 @@ define( [
|
|||
"../var/support"
|
||||
], function( support ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
support.focusin = "onfocusin" in window;
|
||||
|
||||
return support;
|
||||
|
|
4
bower_components/jquery/src/event/trigger.js
vendored
4
bower_components/jquery/src/event/trigger.js
vendored
|
@ -8,6 +8,8 @@ define( [
|
|||
"../event"
|
||||
], function( jQuery, document, dataPriv, acceptData, hasOwn ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;
|
||||
|
||||
jQuery.extend( jQuery.event, {
|
||||
|
@ -121,7 +123,7 @@ jQuery.extend( jQuery.event, {
|
|||
special._default.apply( eventPath.pop(), data ) === false ) &&
|
||||
acceptData( elem ) ) {
|
||||
|
||||
// Call a native DOM method on the target with the same name name as the event.
|
||||
// Call a native DOM method on the target with the same name as the event.
|
||||
// Don't do default actions on window, that's where global variables be (#6170)
|
||||
if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue