Skip to content

Commit 75f2e8b

Browse files
committed
Disable Evaluate and Selector Gadget shortcuts at remote profile.
Refs #17
1 parent 98523a0 commit 75f2e8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

minium-developer-web/src/main/webapp/minium.developer/scripts/editor.area/service.editor.tabs.manager.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,9 @@ miniumDeveloper.factory('MiniumEditor', function($rootScope, $translate, $filter
479479

480480
function addEventListeners(editor, fileName, that) {
481481

482-
specificHandlers(fileName, editor, that);
482+
if (!$rootScope.hasRemoteProfile) {
483+
specificHandlers(fileName, editor, that);
484+
}
483485

484486
if (fileName !== "") {
485487
// add listener to input

0 commit comments

Comments
 (0)