1
0
Fork 0

Update for core changes

This commit is contained in:
Thomas Geymayer 2013-06-14 20:29:39 +02:00
parent 4d327e86ba
commit 35a2045123

View file

@ -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)