|
@@ -1961,7 +1961,16 @@
|
|
|
//Move this to fixed layer position
|
|
|
$(object).addClass("topmost");
|
|
|
$(object).css("z-index", 501);
|
|
|
+ }
|
|
|
+
|
|
|
+ function UnpinFloatWindowFromTopMostMode(object){
|
|
|
+ $(object).removeClass("topmost");
|
|
|
+ if (focusedWindow == object){
|
|
|
+ focusedWindow = undefined;
|
|
|
+ $(object).css("z-index", 1);
|
|
|
+ }
|
|
|
|
|
|
+ MoveFloatWindowToTop(object);
|
|
|
}
|
|
|
|
|
|
function MoveFloatWindowToTop(object) {
|