Make exception explicit

This commit is contained in:
Lennart Kats 2015-05-05 16:48:57 +02:00
parent a16f73ebc7
commit 6aacc02211

View File

@ -149,7 +149,7 @@ define(function(require, exports, module) {
// fixes a problem with Ace architect loading /lib/ace
// creating a conflict with themes
if (theme.isDark === undefined)
if (!theme || theme.isDark === undefined)
throw new Error();
}
catch (e) {