Fix seek slider for thin ugoira

This commit is contained in:
Toks
2014-11-06 17:35:40 -05:00
parent 8096fd388c
commit ab7d06cd30
2 changed files with 5 additions and 4 deletions

View File

@@ -432,8 +432,9 @@
Danbooru.Post.resize_ugoira_controls = function() {
var $img = $("#image");
$("#ugoira-control-panel").css("width", $img.width());
$("#seek-slider").css("width", $img.width() - 81);
var width = Math.max($img.width(), 350);
$("#ugoira-control-panel").css("width", width);
$("#seek-slider").css("width", width - 81);
}
Danbooru.Post.notice_update = function(x) {