mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-14 15:08:34 +02:00
got rid of every underscore bind i think -- 1500 line diff
This commit is contained in:
parent
3833319476
commit
2257668f9d
21 changed files with 229 additions and 230 deletions
|
@ -84,15 +84,15 @@ var MultiView = Backbone.View.extend({
|
|||
},
|
||||
|
||||
getPosFunc: function() {
|
||||
return _.debounce(_.bind(function() {
|
||||
return _.debounce(function() {
|
||||
this.navForward();
|
||||
}, this), this.navEventDebounce, true);
|
||||
}.bind(this), this.navEventDebounce, true);
|
||||
},
|
||||
|
||||
getNegFunc: function() {
|
||||
return _.debounce(_.bind(function() {
|
||||
return _.debounce(function() {
|
||||
this.navBackward();
|
||||
}, this), this.navEventDebounce, true);
|
||||
}.bind(this), this.navEventDebounce, true);
|
||||
},
|
||||
|
||||
lock: function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue