Index: trunk/extensions/MobileFrontend/javascripts/beta_application.js |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | var i, search, clearSearch, results, languageSelection, a, |
8 | 8 | sectionHeadings = document.getElementsByClassName( 'section_heading' ), |
9 | 9 | dismissNotification, cookieNameZeroVisibility, zeroRatedBanner, zeroRatedBannerVisibility; |
10 | | - document.body.className = "jsEnabled"; |
| 10 | + utilities( document.body ).addClass( 'jsEnabled' ); |
11 | 11 | function openSectionHandler() { |
12 | 12 | var sectionNumber = this.id ? this.id.split( '_' )[1] : -1; |
13 | 13 | if( sectionNumber > -1 ) { |
Index: trunk/extensions/MobileFrontend/javascripts/application.js |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | var i, search, clearSearch, results, languageSelection, a, |
8 | 8 | sectionHeadings = document.getElementsByClassName( 'section_heading' ), |
9 | 9 | dismissNotification, cookieNameZeroVisibility, zeroRatedBanner, zeroRatedBannerVisibility; |
10 | | - document.body.className = "jsEnabled"; |
| 10 | + utilities( document.body ).addClass( 'jsEnabled' ); |
11 | 11 | function openSectionHandler() { |
12 | 12 | var sectionNumber = this.id ? this.id.split( '_' )[1] : -1; |
13 | 13 | if( sectionNumber > -1 ) { |