[Pkg-javascript-commits] [backbone] 194/211: Allow initialize on any class to pass on original arguments.
Jonas Smedegaard
js at moszumanska.debian.org
Sat May 3 17:00:23 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to tag 0.5.0
in repository backbone.
commit 3eb075a2405524c993db159db9d546ef55799c4b
Author: threepointone <threepointone at gmail.com>
Date: Tue Jun 21 02:09:15 2011 -0700
Allow initialize on any class to pass on original arguments.
---
backbone.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/backbone.js b/backbone.js
index 6005ce0..995e8d3 100644
--- a/backbone.js
+++ b/backbone.js
@@ -143,7 +143,7 @@
this._changed = false;
this._previousAttributes = _.clone(this.attributes);
if (options && options.collection) this.collection = options.collection;
- this.initialize(attributes, options);
+ this.initialize.apply(this, arguments);
};
// Attach all inheritable methods to the Model prototype.
@@ -420,7 +420,7 @@
_.bindAll(this, '_onModelEvent', '_removeReference');
this._reset();
if (models) this.reset(models, {silent: true});
- this.initialize(models, options);
+ this.initialize.apply(this, arguments);
};
// Define the Collection's inheritable methods.
@@ -659,7 +659,7 @@
options || (options = {});
if (options.routes) this.routes = options.routes;
this._bindRoutes();
- this.initialize(options);
+ this.initialize.apply(this, arguments);
};
// Cached regular expressions for matching named param parts and splatted
@@ -880,7 +880,7 @@
this._configure(options || {});
this._ensureElement();
this.delegateEvents();
- this.initialize(options);
+ this.initialize.apply(this, arguments);
};
// Element lookup, scoped to DOM elements within the current view.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/backbone.git
More information about the Pkg-javascript-commits
mailing list