Add loading message when changing dictionaries
This commit is contained in:
parent
72a7429bfa
commit
3ebc567c33
|
@ -18,6 +18,7 @@ export function createNewDictionary() {
|
|||
export function changeDictionary(dictionary) {
|
||||
dictionary = typeof dictionary.target !== 'undefined' ? dictionary.target.value : dictionary;
|
||||
if (dictionary !== window.currentDictionary.externalID) {
|
||||
addMessage('Loading Dictionary...');
|
||||
request({
|
||||
action: 'change-dictionary',
|
||||
dictionary,
|
||||
|
|
Loading…
Reference in New Issue