Update bower dependencies.
This commit is contained in:
parent
818bdad5af
commit
2beab45f32
185 changed files with 21480 additions and 8110 deletions
8
app/bower_components/jquery/src/event.js
vendored
8
app/bower_components/jquery/src/event.js
vendored
|
@ -2,6 +2,7 @@ define( [
|
|||
"./core",
|
||||
"./var/document",
|
||||
"./var/documentElement",
|
||||
"./var/isFunction",
|
||||
"./var/rnothtmlwhite",
|
||||
"./var/slice",
|
||||
"./data/var/dataPriv",
|
||||
|
@ -9,7 +10,8 @@ define( [
|
|||
|
||||
"./core/init",
|
||||
"./selector"
|
||||
], function( jQuery, document, documentElement, rnothtmlwhite, slice, dataPriv, nodeName ) {
|
||||
], function( jQuery, document, documentElement, isFunction, rnothtmlwhite,
|
||||
slice, dataPriv, nodeName ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
@ -418,7 +420,7 @@ jQuery.event = {
|
|||
enumerable: true,
|
||||
configurable: true,
|
||||
|
||||
get: jQuery.isFunction( hook ) ?
|
||||
get: isFunction( hook ) ?
|
||||
function() {
|
||||
if ( this.originalEvent ) {
|
||||
return hook( this.originalEvent );
|
||||
|
@ -553,7 +555,7 @@ jQuery.Event = function( src, props ) {
|
|||
}
|
||||
|
||||
// Create a timestamp if incoming event doesn't have one
|
||||
this.timeStamp = src && src.timeStamp || jQuery.now();
|
||||
this.timeStamp = src && src.timeStamp || Date.now();
|
||||
|
||||
// Mark it as fixed
|
||||
this[ jQuery.expando ] = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue