mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-07 01:55:34 +00:00
Added colorpicker polyfill
This commit is contained in:
@@ -1927,6 +1927,15 @@ nav ul li:hover, nav ul li.active {
|
||||
border-top-left-radius: 4px;
|
||||
}
|
||||
|
||||
.sp-replacer {
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
#embed.modal.open {
|
||||
overflow-y: visible;
|
||||
}
|
||||
|
||||
#top-button, #bottom-button{
|
||||
color: white;
|
||||
position: absolute;
|
||||
|
||||
@@ -386,6 +386,15 @@ function init(){
|
||||
position: "top",
|
||||
tooltip: "Cast Zoff to TV"
|
||||
});
|
||||
|
||||
$("#color_embed").spectrum({
|
||||
color: "#808080",
|
||||
change: function(c) {
|
||||
color = c.toHexString().substring(1); // #ff0000
|
||||
$("#embed-area").val(embed_code(embed_autoplay, embed_width, embed_height, color));
|
||||
},
|
||||
appendTo: "#embed",
|
||||
});
|
||||
}
|
||||
|
||||
$("#results" ).hover( function() { $("div.result").removeClass("hoverResults"); i = 0; }, function(){ });
|
||||
|
||||
Reference in New Issue
Block a user