Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supports the display of a dial for the management of the 24h (without AM and PM) #52

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/paper-time-picker.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

362 changes: 362 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<h1>{{time}}</h1>
<paper-button class="btn" on-tap="showDialog" raised>Change Time</paper-button>
<paper-dialog id="dialog" class="paper-time-picker-dialog" modal on-iron-overlay-closed="dismissDialog">
<paper-time-picker id="picker" time="[[time]]"></paper-time-picker>
<paper-time-picker id="picker" time="[[time]]" ></paper-time-picker>
<div class="buttons">
<paper-button dialog-dismiss>CANCEL</paper-button>
<paper-button dialog-confirm>OK</paper-button>
Expand All @@ -48,7 +48,7 @@ <h1>{{time}}</h1>
this.$.dialog.toggle();
};
document.addEventListener('WebComponentsReady', function() {
scope.time = '3:30 PM';
scope.time = '15:30';
scope.showDialog();
});
})();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paper-time-picker",
"version": "1.1.4",
"version": "1.1.5",
"description": "Provides a responsive time picker based on the material design spec",
"main": "index.html",
"devDependencies": {
Expand Down
Loading