Skip to content

Commit

Permalink
Merge pull request #118 from makepanic/fix-actions-loading-position
Browse files Browse the repository at this point in the history
fixes actions loading indicator position
  • Loading branch information
locks committed Feb 23, 2016
2 parents a62a026 + 4569b65 commit ad76751
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions app/templates/project/detail/actions.hbs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<div class="ui basic segment">
{{#unless help}}
<div class="ui active inverted dimmer">
<div class="ui text loader">
Reticulating splines <br>
</div>
</div>
{{else}}
{{#each availableCommands key='name' as |cmd|}}
{{ember-cmd project=model cmd=cmd}}
{{/each}}
{{/unless}}
</div>

{{#unless help}}
<div class="ui active inverted dimmer absolute-fill">
<div class="ui text loader">
Reticulating splines <br>
</div>
</div>
{{else}}
<div class="ui basic segment">
{{#each availableCommands key='name' as |cmd|}}
{{ember-cmd project=model cmd=cmd}}
{{/each}}
</div>
{{/unless}}
{{outlet}}

0 comments on commit ad76751

Please sign in to comment.