refactoring...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-12-09 21:18:19 +04:00
parent 64f13db83f
commit ec82d1985c
2 changed files with 2 additions and 7 deletions

View File

@ -1,4 +1,6 @@
.panel {
position: absolute;
display: inline-block;
min-width: 200px;
max-width: 450px;

View File

@ -16,11 +16,6 @@ function makePanel(title, open, editable_title){
var panel = $('<details/>')
.prop('open', open == null ? true : open)
.addClass('panel noScroll')
.css({
position: 'absolute',
top: '100px',
left: '100px',
})
.append($('<summary>'+title+'</summary>')
.attr({
contenteditable: editable_title == null ? 'false' : 'true',
@ -105,7 +100,5 @@ function makeSubPanel(title, open, parent){
/**********************************************************************
* vim:set ts=4 sw=4 : */