Skip to content

Commit

Permalink
#6: add view template
Browse files Browse the repository at this point in the history
  • Loading branch information
HaithemMosbahi committed Jul 8, 2017
1 parent 072984f commit cb328c1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"main": "scheduler-component.html",
"dependencies": {
"polymer": "Polymer/polymer#^2.0.0",
"fullcalendar": "^3.4.0"
"fullcalendar": "^3.4.0",
"paper-dialog": "PolymerElements/paper-dialog#^2.0.0"
},
"devDependencies": {
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^2.0.0",
Expand Down
33 changes: 33 additions & 0 deletions scheduler-view-element.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!--
A custom element used to view the details of an event.
-->
<dom-module id="scheduler-view-element">
<template>
<style>
:host {
display: block;
}


</style>

</template>

<script>
class SchedulerViewElement extends Polymer.Element {
static get is() { return 'scheduler-view-element'; }
static get properties() {
return { }
}

ready() {
super.ready();
}



}

window.customElements.define(SchedulerViewElement.is, SchedulerViewElement);
</script>
</dom-module>

0 comments on commit cb328c1

Please sign in to comment.