Remove aggressive highlighting

This commit is contained in:
Sam 2014-06-05 14:45:53 +10:00
parent f1a28d62a3
commit c8a0994f24
1 changed files with 0 additions and 12 deletions

View File

@ -410,18 +410,6 @@ Discourse.ComposerView = Discourse.View.extend(Ember.Evented, {
self.refreshPreview();
return replyTitle.length ? replyTitle.putCursorAtEnd() : $wmdInput.putCursorAtEnd();
}), 300);
$('#reply-title').on('focusout', function(){
self.set('showTitleTip', Date.now());
});
$('#wmd-input').on('focusout', function(){
self.set('showReplyTip', Date.now());
});
self.$('.category-input').on('focusout', function(){
self.set('showCategoryTip', Date.now());
});
},
addMarkdown: function(text) {