File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 7
7
" upload" ,
8
8
" ajax"
9
9
],
10
- "version" : " 3.45 .0" ,
10
+ "version" : " 3.46 .0" ,
11
11
"author" : {
12
12
"name" : " M. Alsup" ,
13
13
"url" : " http://jquery.malsup.com"
Original file line number Diff line number Diff line change 1
1
/*!
2
2
* jQuery Form Plugin
3
- * version: 3.45 .0-2013.10.17
3
+ * version: 3.46 .0-2013.11.21
4
4
* Requires jQuery v1.5 or later
5
5
* Copyright (c) 2013 M. Alsup
6
6
* Examples and documentation at: http://malsup.com/jquery/form/
9
9
* https://github.com/malsup/form#copyright-and-license
10
10
*/
11
11
/*global ActiveXObject */
12
- ; ( function ( $ ) {
12
+
13
+ // AMD support
14
+ ( function ( factory ) {
15
+ if ( typeof define === 'function' && define . amd ) {
16
+ // using AMD; register as anon module
17
+ define ( [ 'jquery' ] , factory ) ;
18
+ } else {
19
+ // no AMD; invoke directly
20
+ factory ( ( typeof ( jQuery ) != 'undefined' ) ? jQuery : window . Zepto ) ;
21
+ }
22
+ }
23
+
24
+ ( function ( $ ) {
13
25
"use strict" ;
14
26
15
27
/*
@@ -1201,4 +1213,5 @@ function log() {
1201
1213
}
1202
1214
}
1203
1215
1204
- } ) ( ( typeof ( jQuery ) != 'undefined' ) ? jQuery : window . Zepto ) ;
1216
+ } ) ) ;
1217
+
You can’t perform that action at this time.
0 commit comments