-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the breadcrumb title spacing functionality
This removes the space between each breadcrumb title part when passing multiple positional arguments. This is a better default since spaces can be added very easily but to remove them the user has to use the `{{concat}}` helper. This also makes it more consistent with how the `{{concat}}` and `{{page-title}}` helpers works.
- Loading branch information
Showing
5 changed files
with
6 additions
and
6 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
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,5 +1,5 @@ | ||
{{page-title "Bar"}} | ||
{{breadcrumb "Bar:" this.number route="foo.bar"}} | ||
{{breadcrumb "Bar: " this.number route="foo.bar"}} | ||
{{outlet}} | ||
|
||
<button type="button" {{on "click" this.getRandomNumber}}>Random</button> |
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 @@ | ||
{{page-title "Baz"}} | ||
{{breadcrumb "Baz:" this.model route="foo.bar.baz"}} | ||
{{breadcrumb "Baz: " this.model route="foo.bar.baz"}} | ||
{{outlet}} |
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