PLT-2616 making dev mode javascript error red (#2787)

Этот коммит содержится в:
Corey Hulen
2016-04-25 05:38:41 -07:00
коммит произвёл Joram Wilander
родитель e3d70a4667
Коммит a9cde2b0f9
3 изменённых файлов: 38 добавлений и 2 удалений

Просмотреть файл

@@ -88,7 +88,7 @@ function preRenderSetup(callwhendone) {
});
if (window.mm_config && window.mm_config.EnableDeveloper === 'true') {
window.ErrorStore.storeLastError({message: 'DEVELOPER MODE: A javascript error has occured. Please use the javascript console to capture and report the error (row: ' + line + ' col: ' + column + ').'});
window.ErrorStore.storeLastError({type: 'developer', message: 'DEVELOPER MODE: A javascript error has occured. Please use the javascript console to capture and report the error (row: ' + line + ' col: ' + column + ').'});
window.ErrorStore.emitChange();
}
};