-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1285 from adopted-ember-addons/chore/remove-no-im…
…plicit-this chore: remove no-implicit-this lint errors
- Loading branch information
Showing
58 changed files
with
516 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{{! template-lint-disable no-implicit-this }} | ||
{{#if (has-block)}} | ||
<div class="md-media-{{size}}"> | ||
<div class="md-media-{{this.size}}"> | ||
{{yield}} | ||
</div> | ||
{{else}} | ||
<img class="md-media-{{size}}" src={{src}} alt={{alt}} title={{title}}> | ||
<img class="md-media-{{this.size}}" src={{@src}} alt={{@alt}} title={{@title}}> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{{! template-lint-disable no-implicit-this }} | ||
{{#if (has-block)}} | ||
<div class="md-media-{{size}}"> | ||
<div class="md-media-{{this.size}}"> | ||
{{yield}} | ||
</div> | ||
{{else}} | ||
<img class="md-media-{{size}}" src={{src}} alt={{alt}} title={{title}}> | ||
<img class="md-media-{{this.size}}" src={{@src}} alt={{@alt}} title={{@title}}> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
{{! template-lint-disable no-implicit-this }} | ||
{{-paper-underscore iconClass}} | ||
{{-paper-underscore this.iconClass}} | ||
{{yield}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{{! template-lint-disable no-curly-component-invocation no-implicit-this }} | ||
<label>{{label}}</label> | ||
{{! template-lint-disable no-curly-component-invocation }} | ||
<label>{{@label}}</label> | ||
{{yield}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{{! template-lint-disable no-implicit-this }} | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 {{diameter}} {{diameter}}" style={{svgStyle}}> | ||
<path fill="none" style={{pathStyle}} stroke-dasharray={{strokeDasharray}} d={{d}}></path> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 {{this.diameter}} {{this.diameter}}" style={{this.svgStyle}}> | ||
<path fill="none" style={{this.pathStyle}} stroke-dasharray={{this.strokeDasharray}} d={{this.d}}></path> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{{! template-lint-disable no-implicit-this }} | ||
<div class="md-container {{queryModeClass}}"> | ||
<div class="md-container {{this.queryModeClass}}"> | ||
<div class="md-dashed"></div> | ||
<div class="md-bar md-bar1" style={{bar1Style}}></div> | ||
<div class="md-bar md-bar2" style={{bar2Style}}></div> | ||
<div class="md-bar md-bar1" style={{this.bar1Style}}></div> | ||
<div class="md-bar md-bar2" style={{this.bar2Style}}></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.