Part of fix for SF1 bug 123355, reviewed by fur. Approved by brade, don

This commit is contained in:
cmanske 1998-06-12 01:22:14 +00:00
Родитель f19cf5302a
Коммит b16f18b21d
1 изменённых файлов: 7 добавлений и 6 удалений

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

@ -581,12 +581,13 @@ LM_CanDoJS(MWContext *context)
forceJSEnabled = PR_FALSE;
}
if (!forceJSEnabled && !LM_GetMochaEnabled())
return JS_FALSE;
/* No JS for Editor */
if( EDT_IS_EDITOR(context) )
return JS_FALSE;
/* No JS for Editor unless forced on
* (e.g., for Composer Plugins, which uses JS to access preferences)
*/
if (!forceJSEnabled &&
(!LM_GetMochaEnabled() || EDT_IS_EDITOR(context))) {
return JS_FALSE;
}
switch (context->type) {
case MWContextBrowser: