2017-03-07 20:28:52 +03:00
|
|
|
{{#if hasBlock}}
|
|
|
|
{{yield (hash
|
|
|
|
isIdle=isIdle
|
|
|
|
isRunning=isRunning
|
|
|
|
isSuccess=isSuccess
|
|
|
|
isFailure=isFailure
|
|
|
|
)}}
|
2017-01-19 14:20:33 +03:00
|
|
|
{{else}}
|
2017-03-07 20:28:52 +03:00
|
|
|
<span>
|
2018-03-19 12:57:31 +03:00
|
|
|
{{#if isRunning}}{{svg-jar "spinner" class="gh-icon-spinner"}}{{runningText}}{{/if}}
|
2017-07-20 13:46:31 +03:00
|
|
|
{{#if isIdle}}{{buttonText}}{{/if}}
|
2018-03-19 12:57:31 +03:00
|
|
|
{{#if isSuccess}}{{svg-jar "check-circle"}} {{successText}}{{/if}}
|
|
|
|
{{#if isFailure}}{{svg-jar "retry"}} {{failureText}}{{/if}}
|
2017-03-07 20:28:52 +03:00
|
|
|
</span>
|
|
|
|
{{/if}}
|