File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 9999 /* add custom event if it does not exist */
100100 if ( ! $ . isFunction ( $ ( this ) [ settings . event ] ) ) {
101101 $ . fn [ settings . event ] = function ( fn ) {
102- return fn ? this . bind ( settings . event , fn ) : this . trigger ( settings . event ) ;
103- }
102+ return fn ? this . bind ( settings . event , fn ) : this . trigger ( settings . event ) ;
103+ }
104104 }
105105
106106 /* show tooltip */
209209 data : loaddata ,
210210 async : false ,
211211 success : function ( result ) {
212- window . clearTimeout ( t ) ;
213- input_content = result ;
212+ window . clearTimeout ( t ) ;
213+ input_content = result ;
214214 input . disabled = false ;
215215 }
216216 } ) ;
457457 return ( select ) ;
458458 } ,
459459 content : function ( string , settings , original ) {
460- if ( String == string . constructor ) {
460+ if ( String == string . constructor ) {
461461 eval ( 'var json = ' + string ) ;
462462 for ( var key in json ) {
463463 if ( ! json . hasOwnProperty ( key ) ) {
467467 continue ;
468468 }
469469 var option = $ ( '<option />' ) . val ( key ) . append ( json [ key ] ) ;
470- $ ( 'select' , this ) . append ( option ) ;
470+ $ ( 'select' , this ) . append ( option ) ;
471471 }
472472 }
473473 /* Loop option again to set selected. IE needed this... */
You can’t perform that action at this time.
0 commit comments