diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js index c364483..e0b61e9 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js @@ -1468,9 +1468,14 @@ function ($rootScope, $scope, Modules, $log, $location, $compile, $timeout, Data $(result.root.uc.al.lx).each(function (key, value) { $('#lexiconLangDropdown').append(''); + }); + $('#lexiconLangDropdown').html($('#lexiconLangDropdown').find('option').sort(function (x, y) { + + return $(x).text() > $(y).text() ? 1 : -1 + })); } });