blob: 5cd0723d9e3ceb3009aa88fb2b4e6b85b1a2b6ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <lib/std.mi>
#include "attribs.m"
Global Button btnVideoReattach;
System.onScriptLoaded() {
initAttribs();
BtnVideoReattach = getScriptGroup().findObject("button.video.reattach");
}
BtnVideoReattach.onLeftClick() {
Container c = getContainer("main");
if (c.getLayout("shade").isVisible()) c.switchToLayout("normal");
video_detach_attrib.setData("0");
}
|