File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ $(document).ready(function() {
507
507
beforeSend : function ( ) {
508
508
$ ( "#Vu" + id ) . hide ( ) ;
509
509
$ ( "#Vd" + id ) . hide ( ) ;
510
- $ ( "#V" + id ) . html ( "<img src=\"/images/working.gif\" alt=\"Working...\" border=\"0\" title=\"Working...\" / >" ) ;
510
+ $ ( "#V" + id ) . html ( "<img src=\"/images/working.gif\" alt=\"Working...\" border=\"0\" title=\"Working...\">" ) ;
511
511
}
512
512
} ) ;
513
513
request . done ( function ( data ) {
@@ -682,7 +682,7 @@ function flashMessage(o)
682
682
683
683
var id = 'id_' + Math . random ( ) . toString ( ) . replace ( '0.' , '' ) ;
684
684
685
- var message = $ ( '<div / >' )
685
+ var message = $ ( '<div>' )
686
686
. addClass ( 'message ' + options . type )
687
687
. data ( 'type' , options . type )
688
688
. attr ( 'id' , id )
Original file line number Diff line number Diff line change 338
338
339
339
// Does a result count already exist in this resultHeading?
340
340
if ( resultCount . length == 0 ) {
341
- var results = $ ( "<span class='result-count' / >" ) . text ( numResults ) ;
341
+ var results = $ ( "<span class='result-count'>" ) . text ( numResults ) ;
342
342
resultHeading . append ( results ) ;
343
343
} else {
344
344
resultCount . text ( numResults ) ;
387
387
* manipulation, which breaks the auto-submit functionality we
388
388
* previously relied upon for enter keypresses in the input box to
389
389
* work. Adding a hidden submit button re-enables it. */
390
- $ ( "<input type='submit' style='visibility: hidden; position: fixed' / >" ) . insertAfter ( element ) ;
390
+ $ ( "<input type='submit' style='visibility: hidden; position: fixed'>" ) . insertAfter ( element ) ;
391
391
392
392
// Fix for a styling issue on the created input element.
393
393
$ ( ".tt-hint" , $ ( element ) . parent ( ) ) . addClass ( "search-query" ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ $(document).ready(function() {
14
14
beforeSend : function ( ) {
15
15
$ ( "#Vu" + id ) . hide ( ) ;
16
16
$ ( "#Vd" + id ) . hide ( ) ;
17
- $ ( "#V" + id ) . html ( "<img src=\"/images/working.gif\" alt=\"Working...\" border=\"0\" title=\"Working...\" / >" ) ;
17
+ $ ( "#V" + id ) . html ( "<img src=\"/images/working.gif\" alt=\"Working...\" border=\"0\" title=\"Working...\">" ) ;
18
18
}
19
19
} ) ;
20
20
request . done ( function ( data ) {
You can’t perform that action at this time.
0 commit comments