From 636e7b00a9f9dc3b6829a8e8593114c921639060 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 26 May 2011 11:54:35 -0400 Subject: [PATCH] remove an extraneous this.options --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 706c481e..6cfffd31 100644 --- a/backbone.js +++ b/backbone.js @@ -772,7 +772,7 @@ // an existing route, and `false` otherwise. start : function(options) { if (historyStarted) throw new Error("Backbone.history has already been started"); - this.options = _.extend({}, {root: '/'}, options); + this.options = _.extend({}, {root: '/'}, this.options, options); this._wantsPushState = !!this.options.pushState; this._hasPushState = !!(this.options.pushState && window.history && window.history.pushState); var fragment = this.getFragment();