Also, I can tell it's loading correctly because it looks like this, without vertical:
<https://lh5.googleusercontent.com/-0pzChjdN5O4/UtXJ9xz84FI/AAAAAAAAB8c/rBEbPlkXrRs/s1600/layout.png> Here is the code that made the above: <polymer-element name="s-app"> <link rel="import" href="../bower_components/polymer-ui-tabs/polymer-ui-tabs.html"> <link rel="import" href="../bower_components/polymer-ui-animated-pages/polymer-ui-animated-pages.html"> <link rel="import" href="../bower_components/polymer-flex-layout/polymer-flex-layout.html"> <template> <polymer-flex-layout isContainer> <header> Header </header> <polymer-ui-animated-pages selected="{{page}}" flex> <div>Page One</div> <div>Page Two</div> <div>Page Three</div> </polymer-ui-animated-pages> <polymer-ui-tabs selected="{{page}}"> <span>One</span> <span>Two</span> <span>Three</span> </polymer-ui-tabs> </polymer-flex-layout> </template> <script> //switch page on tab Polymer('s-app', {page:0}); </script> </polymer-element> Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
