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');