TheDesk Usamin (18.9.1)

This commit is contained in:
Cutls
2019-09-01 01:31:19 +09:00
parent 6e2e488565
commit d5a27ba814
5 changed files with 7 additions and 8 deletions

View File

@@ -47,9 +47,6 @@ function show() {
$('#post-box').css("top", top + "px")
var height = localStorage.getItem("postbox-height");
var width = localStorage.getItem("postbox-width");
if (height) {
$('#post-box').css("height", height + "px")
}
if (width) {
$('#post-box').css("width", width + "px")
} else {
@@ -83,7 +80,6 @@ $(function () {
minHeight: 150,
minWidth: 100,
stop: function (event, ui) {
localStorage.setItem("postbox-height", ui.size.height);
localStorage.setItem("postbox-width", ui.size.width);
}
});