Skip to content

Commit

Permalink
Add support for popups over STPP
Browse files Browse the repository at this point in the history
Fixes #3099
  • Loading branch information
andoma committed Jun 2, 2016
1 parent d08e4d7 commit f202b3b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions glwskins/flat/pages/stpp.view
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ coreAttach($self.model.remoteurl, $view.stppstatus, {
onEvent(back, deliverEvent($core.navigators.current.eventSink));
onEvent(playTrackFromSource, deliverEvent($core.playqueue.eventSink));

cloner($core.navigators.current.pages, container_z, {

widget(loader, {
noInitialTransform: true;
source: translate($self.model.type,
select(isVoid($self.model.type),
"skin:https://pages/back.view",
"skin:https://pages/" + $self.model.type + ".view"),
"video", "skin:https://pages/stppvideo.view",
"stpp", "skin:https://pages/stppstpp.view");
});
cloner($core.navigators.current.pages, loader, {
noInitialTransform: true;
source: translate($self.model.type,
select(isVoid($self.model.type),
"skin:https://pages/back.view",
"skin:https://pages/" + $self.model.type + ".view"),
"video", "skin:https://pages/stppvideo.view",
"stpp", "skin:https://pages/stppstpp.view");
});
});
cloner($core.popups, loader, {
source: "skin:https://popups/" + $self.type + ".view";
});
});

widget(container_y, {
Expand Down

0 comments on commit f202b3b

Please sign in to comment.