Added code to remove css on closing cheatsheet.

This commit is contained in:
Waheed Ahmed
2014-04-23 18:45:25 +05:00
parent dead780148
commit 49ef8c5686
2 changed files with 20 additions and 2 deletions

View File

@@ -135,6 +135,12 @@ define(["jquery", "underscore", "gettext", "js/views/modals/base_modal",
var parent = $(event.target.parentElement),
mode = parent.data('mode');
event.preventDefault();
var $cheatsheet = $('.simple-editor-cheatsheet');
if ($cheatsheet.hasClass("shown")) {
$(".CodeMirror").removeAttr("style");
$(".modal-content").removeAttr("style");
$cheatsheet.removeClass('shown');
}
this.selectMode(mode);
},