From fc22e8650949e58b5df751b90e5be07e3ba14a60 Mon Sep 17 00:00:00 2001 From: Rufus Pollock Date: Fri, 25 May 2012 08:04:01 +0100 Subject: [PATCH] [app][xs]: micro tidy. --- app/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/js/app.js b/app/js/app.js index 145ec05b..7c976fcf 100755 --- a/app/js/app.js +++ b/app/js/app.js @@ -1,5 +1,5 @@ jQuery(function($) { - var app = new ExplorerApp({ + window.ReclineDataExplorer = new ExplorerApp({ el: $('.recline-app') }) }); @@ -12,7 +12,7 @@ var ExplorerApp = Backbone.View.extend({ initialize: function() { this.el = $(this.el); - this.explorer = null; + this.dataExplorer = null; this.explorerDiv = $('.data-explorer-here'); _.bindAll(this, 'viewExplorer', 'viewHome');