From 7d4d527c8c0ac609fdf2d48b6418cd628e758371 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 7 Feb 2011 10:28:39 -0500 Subject: [PATCH] No periods on errors. --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 8cf40f13..dcda4a38 100644 --- a/backbone.js +++ b/backbone.js @@ -727,7 +727,7 @@ // Start the hash change handling, returning `true` if the current URL matches // an existing route, and `false` otherwise. start : function() { - if (historyStarted) throw new Error("Backbone.history has already been started."); + if (historyStarted) throw new Error("Backbone.history has already been started"); var docMode = document.documentMode; var oldIE = ($.browser.msie && (!docMode || docMode <= 7)); if (oldIE) {