diff --git a/src/jquery.uls.core.js b/src/jquery.uls.core.js index 5d3472a..4897eb5 100644 --- a/src/jquery.uls.core.js +++ b/src/jquery.uls.core.js @@ -59,7 +59,7 @@ height: this.$element[0].offsetHeight } ); return { - top: pos.top + pos.height, + top: pos.top + pos.height, left: '25%' }; }, @@ -107,7 +107,7 @@ }, /** - * callback for results found context. + * callback for results found context. */ success: function() { this.$noResultsView.hide(); diff --git a/src/jquery.uls.languagefilter.js b/src/jquery.uls.languagefilter.js index 30cfeff..68e0291 100644 --- a/src/jquery.uls.languagefilter.js +++ b/src/jquery.uls.languagefilter.js @@ -288,7 +288,7 @@ constructor: RegionSelector, init: function() { - var region = this.$element.data( 'region' ); + var region = this.$element.data( 'region' ); this.regions = $.uls.data.regionsInGroup( this.regionGroup ); if ( region ) { this.regions.push( region ); @@ -388,7 +388,7 @@ */ function isVisualPrefix( prefix, string ) { // Pre-base vowel signs of Indic languages. A vowel sign is called pre-base if - // consonant + vowel becomes [vowel][consonant] when rendered. Eg: ക + െ => കെ + // consonant + vowel becomes [vowel][consonant] when rendered. Eg: ക + െ => കെ var prebases = "െേൈൊോൌெேைொோௌେୈୋୌિਿिিেৈোৌෙේෛොෝෞ"; if ( prebases.indexOf( string[prefix.length] ) > 0 ) { return false;