Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/daapr/commit/eda113b6d227bbceedbb842a6be98716cfa02ba0?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
3 deletions
@ -24,6 +24,8 @@ _
var Player = Backbone . View . extend ( {
var Player = Backbone . View . extend ( {
el : $ ( "body > div.ui-layout-north" )
el : $ ( "body > div.ui-layout-north" )
, elViewport : null
, $elViewport : null
, playIndex : [ ]
, playIndex : [ ]
@ -37,7 +39,12 @@ _
that . $el . html ( tmplPlayerLayout ) ;
that . $el . html ( tmplPlayerLayout ) ;
that . $el . find ( "div:last" ) . html ( _ . template ( tmplPlayerStatus ) ( { } ) ) ;
that . elViewport = document . createElement ( "div" ) ;
that . $elViewport = $ ( that . elViewport ) ;
that . $elViewport . html ( _ . template ( tmplPlayerStatus ) ( { } ) ) ;
that . $el . append ( that . elViewport ) ;
return that ;
return that ;
}
}
@ -14,5 +14,4 @@
< button type = "submit" tabindex = "-1" class = "btn" > < i class = "icon-search" > < / i > < / button >
< button type = "submit" tabindex = "-1" class = "btn" > < i class = "icon-search" > < / i > < / button >
< input type = "text" tabindex = "1" class = "span3 search-query" >
< input type = "text" tabindex = "1" class = "span3 search-query" >
< / div >
< / div >
< / form >
< / form >
< div > < / div >