local precompile assets

This commit is contained in:
2014-12-24 11:01:50 +01:00
parent da0d0869c3
commit da4afbc991
7 changed files with 15 additions and 3 deletions
@@ -11,6 +11,10 @@ App.ApplicationController = Ember.Controller.extend
@set 'notice', null
openDebugger: ->
debugger
evalDebugString: ->
if text = $('#debug-eval-string')
$('.debug-info').append eval(text)
$('.debug-info').append "\n"
currentPathDidChange: (->
@set 'notice', ''
@@ -106,5 +110,3 @@ App.ApplicationController = Ember.Controller.extend
@redirect_to 'index'
@store.find('list', 'current').then(success, error)
didInsertElement: (e)->
#debugger
@@ -8,3 +8,7 @@
.display-row
.display-label  
.display-field: a.button href="./index.html"=t 'settings.reload_application'
.row
.small-8.columns: input#debug-eval-string
.small-4.columns: button{action "evalDebugString"} Debug
.row: .small-12.columns: pre.panel.debug-info