mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-15 07:22:30 +02:00
Replace '_.filter' to 'Array.prototype.filter'
This commit is contained in:
parent
e324e51587
commit
dddf063146
2 changed files with 6 additions and 6 deletions
|
@ -235,7 +235,7 @@ var LevelDropdownView = ContainedBase.extend({
|
|||
},
|
||||
|
||||
getSequencesOnTab: function() {
|
||||
return _.filter(this.sequences, function(sequenceName) {
|
||||
return this.sequences.filter(function(sequenceName) {
|
||||
var tab = LEVELS.getTabForSequence(sequenceName);
|
||||
return tab === this.JSON.selectedTab;
|
||||
}, this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue