Filtering out languages that the ULS doesn't recognize

Change-Id: Ifda0caa640434254cf99c25a70887126f83427d2
This commit is contained in:
Amir E. Aharoni
2012-08-30 19:43:57 +03:00
parent b586f4795e
commit b0f4742eb1

View File

@@ -139,7 +139,12 @@
} }
// Pick only the first elements, because we don't have room for more // Pick only the first elements, because we don't have room for more
var quickList = this.options.quickList.slice( 0, 16 ); var that = this,
quickList = this.options.quickList;
quickList = $.grep( quickList, function( langCode, index ) {
return that.options.languages[langCode];
} );
quickList = quickList.slice( 0, 16 );
quickList.sort( $.uls.data.sortByAutonym ); quickList.sort( $.uls.data.sortByAutonym );
var $quickListsection = $( '<div>' ).addClass( 'twelve columns uls-lcd-region-section' ).prop( 'id', 'uls-lcd-quicklist' ); var $quickListsection = $( '<div>' ).addClass( 'twelve columns uls-lcd-region-section' ).prop( 'id', 'uls-lcd-quicklist' );
$quickListsection.append( $( '<h3>' ).addClass( 'eleven columns uls-lcd-region-section offset-by-one' ).text( 'Common Languages' ) ); $quickListsection.append( $( '<h3>' ).addClass( 'eleven columns uls-lcd-region-section offset-by-one' ).text( 'Common Languages' ) );
@@ -164,7 +169,6 @@
if ( !this.regionDivs ) { if ( !this.regionDivs ) {
this.render(); this.render();
} }
//this.quickList();
}, },
empty: function() { empty: function() {