File tree Expand file tree Collapse file tree 7 files changed +12
-13
lines changed
Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
1818 $ ( function ( ) {
1919 $ ( "#currency" ) . change ( function ( ) {
2020 var current = $ ( "#spinner" ) . spinner ( "value" ) ;
21- Globalization . preferCulture ( $ ( this ) . val ( ) ) ;
21+ $ . global . preferCulture ( $ ( this ) . val ( ) ) ;
2222 $ ( "#spinner" ) . spinner ( "value" , current ) ;
2323 } )
2424
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
2323
2424 $ ( "#culture" ) . change ( function ( ) {
2525 var current = $ ( "#spinner" ) . spinner ( "value" ) ;
26- Globalization . preferCulture ( $ ( this ) . val ( ) ) ;
26+ $ . global . preferCulture ( $ ( this ) . val ( ) ) ;
2727 $ ( "#spinner" ) . spinner ( "value" , current ) ;
2828 } )
2929 } ) ;
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < title > jQuery UI Spinner Demos</ title >
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
Original file line number Diff line number Diff line change 1- <!doctype html>
1+ <!DOCTYPE html>
22< html lang ="en ">
33< head >
44 < meta charset ="utf-8 ">
2424
2525 _parse : function ( value ) {
2626 if ( typeof value == 'string' ) {
27- return + Globalization . parseDate ( value )
27+ return + $ . global . parseDate ( value )
2828 }
2929 return value ;
3030 } ,
3131 _format : function ( ) {
32- this . element . val ( Globalization . format ( new Date ( this . options . value ) , "t" ) ) ;
32+ this . element . val ( $ . global . format ( new Date ( this . options . value ) , "t" ) ) ;
3333 }
3434 } )
3535 $ ( function ( ) {
3636 $ ( "#spinner" ) . timespinner ( ) ;
3737
38-
3938 $ ( "#culture" ) . change ( function ( ) {
4039 var current = $ ( "#spinner" ) . timespinner ( "value" ) ;
41- Globalization . preferCulture ( $ ( this ) . val ( ) ) ;
40+ $ . global . preferCulture ( $ ( this ) . val ( ) ) ;
4241 $ ( "#spinner" ) . timespinner ( "value" , current ) ;
4342 } ) ;
4443 } ) ;
You can’t perform that action at this time.
0 commit comments