From 101f2256526c3bb951c245abdf658c597c3a86cf Mon Sep 17 00:00:00 2001 From: tbranyen Date: Fri, 13 Jul 2012 01:31:36 -0400 Subject: [PATCH] updated root fetch status --- app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index 007eaed8..b2c8f81b 100644 --- a/app/app.js +++ b/app/app.js @@ -31,7 +31,7 @@ function($, _, Backbone) { path = path + ".html"; if (!JST[path]) { - $.ajax({ url: "/" + path, async: false }).then(function(contents) { + $.ajax({ url: app.root + path, async: false }).then(function(contents) { JST[path] = _.template(contents); }); }