Merge pull request #1747 from hartman/themelistfix

Repair label of themes in themelist.
This commit is contained in:
Harutyun Amirjanyan 2014-01-02 04:23:39 -08:00
commit 7bcf64401f

View file

@ -86,7 +86,7 @@ module.exports.addEditorMenuOptions = function addEditorMenuOptions (editor) {
editor.menuOptions.setTheme = themelist.themes.map(function(theme) {
return {
'textContent' : theme.desc,
'textContent' : theme.caption,
'value' : theme.theme
};
});
@ -100,4 +100,4 @@ module.exports.addEditorMenuOptions = function addEditorMenuOptions (editor) {
};
});
});