Skip to content

Commit

Permalink
minor cleanup/refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
MeTaNoV committed Mar 11, 2016
1 parent 21c63ae commit a4cc09e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
"paper-toolbar": "PolymerElements/paper-toolbar#^1.0.0"
"paper-toolbar": "PolymerElements/paper-toolbar#^1.0.0",
"paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0"
}
}
28 changes: 20 additions & 8 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<link rel="import" href="../../polymer/polymer.html">

<link rel="import" href="../../iron-image/iron-image.html">
<link rel="import" href="../../paper-toolbar/paper-toolbar.html">
<link rel="import" href="../../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../paper-input/paper-input.html">
<link rel="import" href="../../paper-material/paper-material.html">

Expand All @@ -30,6 +30,10 @@


<style is="custom-style">
body {
padding: 0;
}

#intro {
margin-top: 24px;
}
Expand All @@ -52,18 +56,17 @@
color: white;
};
}

/* Provied mobile friendly view */
@media (max-width: 600px) {
}

</style>

</head>
<body unresolved>
<template id="t" is="dom-bind">

<paper-toolbar>
<paper-icon-button icon="menu"></paper-icon-button>
<span class="title">Firebase Element eXtended Demo</span>
<firebase-account-menu></firebase-account-menu>
</paper-toolbar>

<!-- Firebase related element -->
<firebase-auth-manager
location="https://metanov-test.firebaseio.com">
</firebase-auth-manager>
Expand All @@ -81,6 +84,15 @@ <h2 title-sign-in>Sign-In Dialog</h2>

<firebase-state logged="{{logged}}" user="{{user}}"></firebase-state>

<!-- App Toolbar -->
<paper-toolbar>
<paper-icon-button icon="menu"></paper-icon-button>
<paper-icon-button icon="info"></paper-icon-button>
<span class="title">Firebase Element eXtended Demo</span>
<firebase-account-menu></firebase-account-menu>
</paper-toolbar>

<!-- App Content -->
<br>
<span>Simply <b>Sign-Up</b> and/or <b>Sign-In</b> and modify dynamically the information of your profile!</span>

Expand Down

0 comments on commit a4cc09e

Please sign in to comment.