fix emmet undefined in non-html challenges

pull/3209/head
Berkeley Martinez 2015-09-09 14:39:01 -07:00
parent f8657efc0e
commit f3f6dad026
1 changed files with 8 additions and 6 deletions

View File

@ -216,13 +216,15 @@ var allSeeds = '';
});
})();
var defaultKeymap = {
'Cmd-E': 'emmet.expand_abbreviation',
'Tab': 'emmet.expand_abbreviation_with_tab',
'Enter': 'emmet.insert_formatted_line_break_only'
};
if (typeof emmetCodeMirror !== 'undefined') {
var defaultKeymap = {
'Cmd-E': 'emmet.expand_abbreviation',
'Tab': 'emmet.expand_abbreviation_with_tab',
'Enter': 'emmet.insert_formatted_line_break_only'
};
emmetCodeMirror(editor, defaultKeymap);
emmetCodeMirror(editor, defaultKeymap);
}
editor.setOption('extraKeys', {
Tab: function(cm) {