Remove incoming/updated topics logic (not sure how that got in here, but it is causing a conflict)

This commit is contained in:
cpradio 2014-08-29 18:19:06 -04:00
parent 80cb8f3a96
commit bc07bc4819
1 changed files with 0 additions and 6 deletions

View File

@ -54,7 +54,6 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({
'`': 'nextSection', '`': 'nextSection',
'~': 'prevSection', '~': 'prevSection',
'/': 'showSearch', '/': 'showSearch',
'.': 'showIncomingUpdatedTopics', // show incoming topics
'ctrl+f': 'showBuiltinSearch', 'ctrl+f': 'showBuiltinSearch',
'command+f': 'showBuiltinSearch', 'command+f': 'showBuiltinSearch',
'?': 'showHelpModal', // open keyboard shortcut help '?': 'showHelpModal', // open keyboard shortcut help
@ -134,11 +133,6 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({
} }
}, },
showIncomingUpdatedTopics: function() {
$('.alert .alert-info .clickable').click();
return false;
},
toggleProgress: function() { toggleProgress: function() {
Discourse.__container__.lookup('controller:topic-progress').send('toggleExpansion', {highlight: true}); Discourse.__container__.lookup('controller:topic-progress').send('toggleExpansion', {highlight: true});
}, },