1
0
Fork 0

Fixed player selectors

master
Matthieu Lalonde 12 years ago
parent e764c2ba3f
commit 3bbc4beae5

@ -53,7 +53,7 @@ body.loading > * {
/** /**
* Elements * Elements
*/ */
div#wrapperPlayer { body > div.ui-layout-north {
margin: 0; margin: 0;
padding: 0; padding: 0;
/*height: 75px;*/ /*height: 75px;*/
@ -361,7 +361,7 @@ body > .ui-layout-south,
table.dataTable tr td, table.dataTable tr td,
table.dataTable tr th, table.dataTable tr th,
body > .ui-layout-west, body > .ui-layout-west,
div#wrapperPlayer { body > div.ui-layout-north {
-webkit-user-select: none; -webkit-user-select: none;
-ms-user-select: none; -ms-user-select: none;
-moz-user-select: none; -moz-user-select: none;
@ -402,7 +402,7 @@ div.drag-table-item {
opacity: 0.8; opacity: 0.8;
} }
div#wrapperPlayer { body > div.ui-layout-north {
background: url('../img/viewport_background.png') repeat-x; background: url('../img/viewport_background.png') repeat-x;
height: 50px; height: 50px;
} }

@ -1,5 +1,5 @@
div#wrapperPlayer #daaprPlayerViewport { body > div.ui-layout-north #daaprPlayerViewport {
margin: 6px auto 0 auto; margin: 6px auto 0 auto;
background: transparent url('../img/player_background.png') repeat-x; background: transparent url('../img/player_background.png') repeat-x;
height: 40px; height: 40px;
@ -13,7 +13,7 @@ div#wrapperPlayer #daaprPlayerViewport {
z-index: 10; z-index: 10;
} }
div#wrapperPlayer #daaprPlayerViewport h1 { body > div.ui-layout-north #daaprPlayerViewport h1 {
color: #5F5F5F; color: #5F5F5F;
font-size: 2em; font-size: 2em;
font-style: oblique; font-style: oblique;

@ -21,7 +21,11 @@ _
"use strict"; "use strict";
var Player = Backbone.View.extend({ var Player = Backbone.View.extend({
el: $("body > div.ui-layout-north") el: $("body > div.ui-layout-north")
, playIndex: []
, webAudio: null
, initialize: function (options) { , initialize: function (options) {
var that = this var that = this
@ -33,6 +37,36 @@ _
return that; 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; return Player;

Loading…
Cancel
Save