Change double quotes to single quotes

Change-Id: I4684a4bc4ac26fffba7310891106d254e893dd63
This commit is contained in:
Santhosh Thottingal
2012-12-24 16:29:14 +05:30
parent 38d5826b72
commit 8c54381e58
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@
*/
(function ( $ ) {
"use strict";
'use strict';
var LanguageFilter = function( element, options ) {
this.$element = $( element );

View File

@@ -245,7 +245,7 @@
var $suggestions = this.quicklist();
$suggestions.find( 'h3' )
.data( 'i18n', 'uls-no-results-suggestion-title' )
.text( "You may be interested in:" )
.text( 'You may be interested in:' )
.i18n();
this.$noResults.find( 'h2' ).after( $suggestions );
},

View File

@@ -18,7 +18,7 @@
*/
( function ( $ ) {
"use strict";
'use strict';
/* RegionSelector plugin definition */