diff --git a/public/js/client.js b/public/js/client.js index 41205f0e23fe33fb4e0bfd6c3a43a4855586da28..bd64bcc9cc2a5554d1b9c497b3e4320f40fe2067 100755 --- a/public/js/client.js +++ b/public/js/client.js @@ -198,7 +198,7 @@ function addHotkey(xpos, ypos, url, page, id){ $('#'+page).append('<button class = "draggable activestyle url-button" id='+ id +'>' + url + '</button>'); var ele = $('#' + id) ele.text(url) - ele.css({position:'absolute', left:xpos + '%', top:ypos + '%', minHeight: (keyboardWidth*.02).toString() + "px"}); + ele.css({position:'absolute', left:xpos + '%', top:ypos + '%', minHeight: (keyboardWidth*.02).toString() + "px", width: '20%'}); hotkeyStylize(ele, page, id, url) }