Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
Remove _default task from menu #275
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-tolboom committed Jul 11, 2016
1 parent e478afd commit befdc4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bot.user.js
Expand Up @@ -1477,7 +1477,9 @@ var userInterface = window.userInterface = (function() {
getOrderedTaskIDs: function() {
var ids = [];
scheduler.tasks.forEach(function(v, i, l) {
ids.push(v.id);
if (v.id !== '_default') {
ids.push(v.id);
}
});
return ids.sort();
},
Expand Down

0 comments on commit befdc4d

Please sign in to comment.