From d8111fbe1dca08e1cc8467ec2bfcc6f251ce5dbb Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Wed, 3 Jul 2019 16:04:11 -0600 Subject: [PATCH] Add loading message when changing dictionaries --- src/js/account/dictionaryManagement.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/account/dictionaryManagement.js b/src/js/account/dictionaryManagement.js index 6274239..660bbc7 100644 --- a/src/js/account/dictionaryManagement.js +++ b/src/js/account/dictionaryManagement.js @@ -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,