mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 16:56:15 +10:00
[임대현] #24 [Help] 도움말, copyright 기능 개발
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3966 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -185,12 +185,11 @@ pinpointApp.directive('serverMap', [ 'serverMapConfig', 'ServerMapDao', 'Alerts'
|
||||
*/
|
||||
setNodeContextMenuPosition = function (top, left) {
|
||||
scope.nodeContextMenuStyle = {
|
||||
display: 'block'
|
||||
};
|
||||
element.find('.nodeContextMenu').css({
|
||||
display: 'block',
|
||||
'top': top,
|
||||
'left': left
|
||||
});
|
||||
'left': left,
|
||||
'z-index': 9999999 // it should be higher than 9999998, because of intro.js
|
||||
};
|
||||
scope.$digest();
|
||||
};
|
||||
|
||||
@@ -201,13 +200,11 @@ pinpointApp.directive('serverMap', [ 'serverMapConfig', 'ServerMapDao', 'Alerts'
|
||||
*/
|
||||
setLinkContextMenuPosition = function (top, left) {
|
||||
scope.linkContextMenuStyle = {
|
||||
display: 'block'
|
||||
};
|
||||
var linkContextMenu = element.find('.linkContextMenu');
|
||||
linkContextMenu.css({
|
||||
display: 'block',
|
||||
'top': top,
|
||||
'left': left
|
||||
});
|
||||
'left': left,
|
||||
'z-index': 9999999 // it should be higher than 9999998, because of intro.js
|
||||
};
|
||||
scope.$digest();
|
||||
};
|
||||
|
||||
@@ -218,13 +215,11 @@ pinpointApp.directive('serverMap', [ 'serverMapConfig', 'ServerMapDao', 'Alerts'
|
||||
*/
|
||||
setBackgroundContextMenuPosition = function (top, left) {
|
||||
scope.backgroundContextMenuStyle = {
|
||||
display: 'block'
|
||||
};
|
||||
var backgroundContextMenu = element.find('.backgroundContextMenu');
|
||||
backgroundContextMenu.css({
|
||||
display: 'block',
|
||||
'top': top,
|
||||
'left': left
|
||||
});
|
||||
'left': left,
|
||||
'z-index': 9999999 // it should be higher than 9999998, because of intro.js
|
||||
};
|
||||
scope.$digest();
|
||||
};
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 11px;
|
||||
z-index: 9;
|
||||
z-index: 9999999; /* it should be higher than 9999998, because of intro.js */
|
||||
font-size: 12px;
|
||||
}
|
||||
.servermap .servermap-status .alert {
|
||||
|
||||
Reference in New Issue
Block a user