-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
... for most things
- Loading branch information
Showing
125 changed files
with
875 additions
and
882 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
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 @@ | ||
{{head-layout}} | ||
<HeadLayout /> | ||
{{title "SkyLines"}} | ||
|
||
{{#if onFreestyleRoute}} | ||
{{outlet}} | ||
{{else}} | ||
{{nav-bar onSearch=(action "search")}} | ||
<NavBar @onSearch={{action "search"}} /> | ||
{{outlet}} | ||
{{/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,3 +1,3 @@ | ||
{{#form-page title=(t "edit-club")}} | ||
{{club-edit-form club=club}} | ||
{{/form-page}} | ||
<FormPage @title={{t "edit-club"}}> | ||
<ClubEditForm @club={{club}} /> | ||
</FormPage> |
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,12 +1,12 @@ | ||
{{#power-select | ||
options=modelsWithNull | ||
selected=model | ||
searchField="name" | ||
onchange=(action "onChange") | ||
as |model|}} | ||
{{#if (eq model.id null)}} | ||
[{{t 'unspecified'}}] | ||
{{else}} | ||
{{model.name}} | ||
{{/if}} | ||
{{/power-select}} | ||
<PowerSelect | ||
@options={{modelsWithNull}} | ||
@selected={{model}} | ||
@searchField="name" | ||
@onchange={{action "onChange"}} | ||
as |model|> | ||
{{#if (eq model.id null)}} | ||
[{{t 'unspecified'}}] | ||
{{else}} | ||
{{model.name}} | ||
{{/if}} | ||
</PowerSelect> |
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 +1 @@ | ||
{{layer-switcher map=map}} | ||
<LayerSwitcher @map={{map}} /> |
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 @@ | ||
{{#each fixes as |fix|}} | ||
{{#if fix.coordinate}} | ||
{{cesium-plane-model scene=scene coordinate=fix.coordinate heading=fix.heading}} | ||
<CesiumPlaneModel @scene={{scene}} @coordinate={{fix.coordinate}} @heading={{fix.heading}} /> | ||
{{/if}} | ||
{{/each}} |
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
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 @@ | ||
{{#each contests as |contest|}} | ||
{{#if contest}} | ||
{{contest-layer-feature source=source contest=contest}} | ||
<ContestLayerFeature @source={{source}} @contest={{contest}} /> | ||
{{/if}} | ||
{{/each}} |
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,12 +1,12 @@ | ||
<table id="fix-data" class="table table-condensed"> | ||
<tbody> | ||
{{#each data as |row|}} | ||
{{fix-table-row | ||
row=row | ||
selectable=selectable | ||
selected=(and selectable (eq row.id selection)) | ||
onSelect=(action "select") | ||
onRemove=onRemove}} | ||
<FixTableRow | ||
@row={{row}} | ||
@selectable={{selectable}} | ||
@selected={{and selectable (eq row.id selection)}} | ||
@onSelect={{action "select"}} | ||
@onRemove={{onRemove}} /> | ||
{{/each}} | ||
</tbody> | ||
</table> |
Oops, something went wrong.