add query parameter for thread-dump window reload

This commit is contained in:
denz
2017-03-17 09:08:43 +09:00
committed by HyoJong
parent 8912d32a93
commit c5830362b3
2 changed files with 5 additions and 5 deletions
@@ -421,7 +421,7 @@
if (openType === null || openType === "window") {
$window.open(
getOpenUrl() +
"/threadDump/" + currentApplicationName + "@" + currentServiceType + "/" + agentId,
"/threadDump/" + currentApplicationName + "@" + currentServiceType + "/" + agentId + "?" + Date.now().valueOf() ,
"Thread Dump Info",
"width=1280px,height=800px,menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=no,status=no"
);
@@ -33,9 +33,9 @@
var currentAgentId = "";
var currentApplicationName = "";
$el.draggable({
handle: ".panel-heading"
});
// $el.draggable({
// handle: ".panel-heading"
// });
scope.threadList = [];
scope.sortType = "-execTime";
@@ -171,7 +171,7 @@
});
}
function setForWindow() {
$el.draggable("destroy");
// $el.draggable("destroy");
$el.find(".panel-heading").css("cursor", "default").find("button").hide();
resetSize();
}