simplified menu css

This commit is contained in:
Mo Bitar
2017-05-05 01:35:45 -05:00
parent 9a5c170921
commit 776f6adbfe
15 changed files with 252 additions and 317 deletions

View File

@@ -253,7 +253,7 @@ angular.module('app.frontend')
}
}
this.selectedMenuItem = function() {
this.selectedMenuItem = function($event) {
this.showMenu = false;
}

View File

@@ -114,7 +114,7 @@ angular.module('app.frontend')
}.bind(this), 100)
}
this.selectedMenuItem = function() {
this.selectedMenuItem = function($event) {
this.showMenu = false;
}

View File

@@ -15,7 +15,7 @@ class EditorMenu {
$scope.formData = {};
$scope.editorManager = editorManager;
$scope.selectEditor = function(editor) {
$scope.selectEditor = function($event, editor) {
editor.conflict_of = null; // clear conflict if applicable
$scope.callback()(editor);
}