Skip to content

Commit

Permalink
Merge pull request #89 from PolymerElements/auto-cleanup
Browse files Browse the repository at this point in the history
Automatic format!
  • Loading branch information
Elliott Marquez authored Apr 11, 2018
2 parents ddde7f8 + 6356b68 commit 6d9d6ce
Show file tree
Hide file tree
Showing 14 changed files with 1,655 additions and 243 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ before_script:
npm run update-types && git diff --exit-code || (echo -e
'\n\033[31mERROR:\033[0m Typings are stale. Please run "npm run
update-types".' && false)
- >-
npm run format && git diff --exit-code || (echo -e '\n\033[31mERROR:\033[0m
Project is not formatted. Please run "npm run format".' && false)
env:
global:
- secure: >-
Expand Down
4 changes: 1 addition & 3 deletions demo/paper-button.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@
Polymer({
is: 'paper-button',

behaviors: [
Polymer.PaperButtonBehavior
]
behaviors: [Polymer.PaperButtonBehavior]
});
</script>
</dom-module>
8 changes: 2 additions & 6 deletions demo/paper-radio-button.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,9 @@
Polymer({
is: 'paper-radio-button',

behaviors: [
Polymer.PaperCheckedElementBehavior
],
behaviors: [Polymer.PaperCheckedElementBehavior],

hostAttributes: {
role: 'radio'
},
hostAttributes: {role: 'radio'},

ready: function() {
this.toggles = true;
Expand Down
Loading

0 comments on commit 6d9d6ce

Please sign in to comment.