-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
105 additions
and
58 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
2 changes: 1 addition & 1 deletion
2
test/fixtures/with-telemetry/input/app/templates/components/file-less.hbs
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,2 +1,2 @@ | ||
<div>this template has no js </div> | ||
{{#bs-button type="primary"}}Primary{{/bs-button}} | ||
<BsButton @type="primary">Primary</BsButton> |
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
4 changes: 2 additions & 2 deletions
4
test/fixtures/with-telemetry/output/app/templates/components/foo-bar.hbs
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,4 @@ | ||
<button> | ||
{{(titleize "string helpers for ember")}} | ||
{{titleize "string helpers for ember"}} | ||
</button> | ||
{{(biz-baz canConvert="no" why="helper" where="local")}} | ||
{{biz-baz canConvert="no" why="helper" where="local"}} |
10 changes: 5 additions & 5 deletions
10
test/fixtures/without-telemetry/input/app/templates/application.hbs
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,9 +1,9 @@ | ||
{{site-header user=this.user class=(if this.user.isAdmin "admin")}} | ||
<SiteHeader @user={{this.user}} @class={{if this.user.isAdmin "admin"}} /> | ||
|
||
{{#super-select selected=this.user.country as |s|}} | ||
<SuperSelect @selected={{this.user.country}} as |s|> | ||
{{#each this.availableCountries as |country|}} | ||
{{#s.option value=country}}{{country.name}}{{/s.option}} | ||
<s.option @value={{country}}>{{country.name}}</s.option> | ||
{{/each}} | ||
{{/super-select}} | ||
</SuperSelect> | ||
|
||
{{ui/button text="Click me"}} | ||
<Ui::Button @text="Click me" /> |
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