Skip to content

Commit 7f239ba

Browse files
Fixed issue causing entwine to not bind
1 parent 35f7f06 commit 7f239ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/MarkdownEditor.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function($) {
22
$.entwine('ss', function($) {
3-
$('textarea.gfmmarkdowneditor').entwine({
3+
$('textarea.markdowneditor').entwine({
44
onkeydown: function(e) {
55
if(e.keyCode===9) { // tab was pressed
66
var domElm=$(this).get(0);
@@ -22,4 +22,4 @@
2222
}
2323
});
2424
});
25-
})(jQuery);
25+
})(jQuery);

0 commit comments

Comments
 (0)