Disable lazyload for language list
The loading should be fast enough now after Id9397631 is merged, taking no more than a second or two to render entirely. We could consider showing a spinner while it's loading, but it doesn't seem necessary. This makes bug 39923 invalid.
This commit is contained in:
committed by
Santhosh Thottingal
parent
e1d65006dd
commit
8341bb8e21
@@ -412,7 +412,7 @@
|
|||||||
searchAPI: null, // Language search API
|
searchAPI: null, // Language search API
|
||||||
languages: $.uls.data.getAutonyms(), // Languages to be used for ULS, default is all languages
|
languages: $.uls.data.getAutonyms(), // Languages to be used for ULS, default is all languages
|
||||||
quickList: null, // Array of language codes or function that returns such
|
quickList: null, // Array of language codes or function that returns such
|
||||||
lazyload: true, // Lazy load the language list when scrolled.
|
lazyload: false, // Whether to lazy load the language list when scrolled
|
||||||
compact: false, // Show ULS in compact mode
|
compact: false, // Show ULS in compact mode
|
||||||
showRegions: ['WW', 'AM', 'EU', 'ME', 'AF', 'AS', 'PA']
|
showRegions: ['WW', 'AM', 'EU', 'ME', 'AF', 'AS', 'PA']
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -333,7 +333,7 @@
|
|||||||
$.fn.lcd.defaults = {
|
$.fn.lcd.defaults = {
|
||||||
languages: null,
|
languages: null,
|
||||||
showRegions: ['WW', 'AM', 'EU', 'ME', 'AF', 'AS', 'PA'],
|
showRegions: ['WW', 'AM', 'EU', 'ME', 'AF', 'AS', 'PA'],
|
||||||
lazyload: true
|
lazyload: false
|
||||||
};
|
};
|
||||||
|
|
||||||
$.fn.lcd.Constructor = LanguageCategoryDisplay;
|
$.fn.lcd.Constructor = LanguageCategoryDisplay;
|
||||||
|
|||||||
Reference in New Issue
Block a user