mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-12-27 17:58:22 +01:00
bug fix
This commit is contained in:
parent
efaafeac3e
commit
46256669c1
@ -15,8 +15,14 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
this.apptitle = opts.apptitle || ""
|
this.apptitle = opts.apptitle || ""
|
||||||
this.minimizable = eval(opts.minimizable) || true
|
if(opts.minimizable == undefined)
|
||||||
this.resizable = eval(opts.resizable) || true
|
this.minimizable = true
|
||||||
|
else
|
||||||
|
this.minimizable = eval(opts.minimizable)
|
||||||
|
if(opts.resizable == undefined)
|
||||||
|
this.resizable = true
|
||||||
|
else
|
||||||
|
this.resizable = eval(opts.resizable)
|
||||||
var self = this
|
var self = this
|
||||||
var offset = {top:0,left:0}
|
var offset = {top:0,left:0}
|
||||||
var desktop_pos = $("#desktop").offset()
|
var desktop_pos = $("#desktop").offset()
|
||||||
|
Loading…
Reference in New Issue
Block a user