Remove incoming/updated topics logic (not sure how that got in here, but it is causing a conflict)
This commit is contained in:
parent
80cb8f3a96
commit
bc07bc4819
|
@ -54,7 +54,6 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({
|
|||
'`': 'nextSection',
|
||||
'~': 'prevSection',
|
||||
'/': 'showSearch',
|
||||
'.': 'showIncomingUpdatedTopics', // show incoming topics
|
||||
'ctrl+f': 'showBuiltinSearch',
|
||||
'command+f': 'showBuiltinSearch',
|
||||
'?': '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() {
|
||||
Discourse.__container__.lookup('controller:topic-progress').send('toggleExpansion', {highlight: true});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue