Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/daapr/commit/3bbc4beae57abe8516c199a206d0e70184998789?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
40 additions and
6 deletions
@ -53,7 +53,7 @@ body.loading > * {
/ * *
* Elements
* /
div# wrapperPlayer {
body > div . ui-layout-north {
margin : 0 ;
padding : 0 ;
/*height: 75px;*/
@ -361,7 +361,7 @@ body > .ui-layout-south,
table . dataTable tr td ,
table . dataTable tr th ,
body > . ui-layout-west ,
div# wrapperPlayer {
body > div . ui-layout-north {
-webkit-user-select : none ;
-ms-user-select : none ;
-moz-user-select : none ;
@ -402,7 +402,7 @@ div.drag-table-item {
opacity : 0 . 8 ;
}
div# wrapperPlayer {
body > div . ui-layout-north {
background : url ( '../img/viewport_background.png' ) repeat-x ;
height : 50px ;
}
@ -1,5 +1,5 @@
div# wrapperPlayer # daaprPlayerViewport {
body > div . ui-layout-north # daaprPlayerViewport {
margin : 6px auto 0 auto ;
background : transparent url ( '../img/player_background.png' ) repeat-x ;
height : 40px ;
@ -13,7 +13,7 @@ div#wrapperPlayer #daaprPlayerViewport {
z-index : 10 ;
}
div# wrapperPlayer # daaprPlayerViewport h1 {
body > div . ui-layout-north # daaprPlayerViewport h1 {
color : # 5F5F5F ;
font-size : 2em ;
font-style : oblique ;
@ -23,6 +23,10 @@ _
var Player = Backbone . View . extend ( {
el : $ ( "body > div.ui-layout-north" )
, playIndex : [ ]
, webAudio : null
, initialize : function ( options ) {
var that = this
;
@ -33,6 +37,36 @@ _
return that ;
}
, setPlayIndex : function ( index ) {
var that = this
;
}
, _createWebAudio : function ( ) {
var that = this
;
}
, _ _waStateChanged : function ( ) {
var that = this
;
}
, _playerEnded : function ( ) {
var that = this
;
}
, _playerLoading : function ( ) {
var that = this
;
}
} ) ;
return Player ;