Update for core changes
This commit is contained in:
parent
4d327e86ba
commit
35a2045123
1 changed files with 4 additions and 2 deletions
|
@ -50,7 +50,7 @@ var Window = {
|
||||||
view: size,
|
view: size,
|
||||||
placement: {
|
placement: {
|
||||||
type: "window",
|
type: "window",
|
||||||
index: me._node.getIndex()
|
id: me.get("id")
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -88,7 +88,9 @@ var Window = {
|
||||||
# Raise to top of window stack
|
# Raise to top of window stack
|
||||||
raise: func()
|
raise: func()
|
||||||
{
|
{
|
||||||
me.setBool("raise-top", 1);
|
# on writing the z-index the window always is moved to the top of all other
|
||||||
|
# windows with the same z-index.
|
||||||
|
me.setInt("z-index", me.get("z-index", 0));
|
||||||
},
|
},
|
||||||
# private:
|
# private:
|
||||||
_propCallback: func(child, mode)
|
_propCallback: func(child, mode)
|
||||||
|
|
Loading…
Reference in a new issue