Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. enyo.kind({
  2. name: "App",
  3. classes: "onyx",
  4. components: [
  5. {kind: "onyx.Toolbar", content: "Welcome to Project Blackhawk!", classes: "toolbar-top text"},
  6. {kind: "onyx.Popup", classes: "iframe-popup login", centered: true, name: "loginPopup", modal: true, floating: true, style: "height: 75%; width: 75%", components: [
  7. {tag: "iframe", src: "http://palm.com", classes: "enyo-fill", style: "height: 100%; width: 100%;"}
  8. ]},
  9. {kind: "onyx.Toolbar", classes: "toolbar-bottom", components: [
  10. {kind: "onyx.Button", classes: "toolbar-bottom button", content: "Login", onclick: "login"},
  11. ],
  12. },
  13. ],
  14. login: function() {
  15. this.$.loginPopup.show();
  16. },
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement