mirror of https://github.com/calzoneman/sync.git
Rename shit to avoid breaking backwards compat of currenttitle
This commit is contained in:
parent
d7c3edfac5
commit
97de993055
|
@ -50,10 +50,10 @@ html(lang="en")
|
||||||
span.input-group-addon Guest login
|
span.input-group-addon Guest login
|
||||||
input#guestname.form-control(type="text", placeholder="Name")
|
input#guestname.form-control(type="text", placeholder="Name")
|
||||||
#videowrap.col-lg-7.col-md-7
|
#videowrap.col-lg-7.col-md-7
|
||||||
p#currenttitle
|
p#videowrap-header
|
||||||
span#resize-video-smaller.glyphicon.glyphicon-minus.pointer(title="Make the video smaller")
|
span#resize-video-smaller.glyphicon.glyphicon-minus.pointer(title="Make the video smaller")
|
||||||
span#resize-video-larger.glyphicon.glyphicon-plus.pointer(title="Make the video larger")
|
span#resize-video-larger.glyphicon.glyphicon-plus.pointer(title="Make the video larger")
|
||||||
span#currenttitle-text Nothing Playing
|
span#currenttitle Nothing Playing
|
||||||
.embed-responsive.embed-responsive-16by9
|
.embed-responsive.embed-responsive-16by9
|
||||||
#ytapiplayer.embed-responsive-item
|
#ytapiplayer.embed-responsive-item
|
||||||
#controlsrow.row
|
#controlsrow.row
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader > p, #currenttitle {
|
#chatheader > p, #videowrap-header {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ body {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle, #userlist, #messagebuffer, #plmeta {
|
#chatheader, #videowrap-header, #userlist, #messagebuffer, #plmeta {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ footer {
|
||||||
border: 1px solid #aaaaaa;
|
border: 1px solid #aaaaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle {
|
#chatheader, #videowrap-header {
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
|
@ -65,7 +65,7 @@ input.form-control[type="email"], textarea.form-control {
|
||||||
border: 1px solid #aaaaaa;
|
border: 1px solid #aaaaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle {
|
#chatheader, #videowrap-header {
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
|
@ -14,7 +14,7 @@ body {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle, #userlist, #messagebuffer, #plmeta {
|
#chatheader, #videowrap-header, #userlist, #messagebuffer, #plmeta {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ footer {
|
||||||
border: 1px solid #aaaaaa;
|
border: 1px solid #aaaaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle {
|
#chatheader, #videowrap-header {
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
|
@ -120,7 +120,7 @@ input.form-control[type="email"], textarea.form-control {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle {
|
#chatheader, #videowrap-header {
|
||||||
border: 1px solid #000000;
|
border: 1px solid #000000;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
background-color: rgba(20, 22, 26, 0.7);
|
background-color: rgba(20, 22, 26, 0.7);
|
||||||
|
|
|
@ -81,7 +81,7 @@ input.form-control[type="email"], textarea.form-control {
|
||||||
border: 1px solid #aaaaaa;
|
border: 1px solid #aaaaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatheader, #currenttitle {
|
#chatheader, #videowrap-header {
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
|
@ -837,7 +837,7 @@ Callbacks = {
|
||||||
$("#voteskip").attr("disabled", false);
|
$("#voteskip").attr("disabled", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#currenttitle-text").text("Currently Playing: " + data.title);
|
$("#currenttitle").text("Currently Playing: " + data.title);
|
||||||
},
|
},
|
||||||
|
|
||||||
mediaUpdate: function(data) {
|
mediaUpdate: function(data) {
|
||||||
|
|
Loading…
Reference in New Issue