Last active
November 21, 2020 19:31
-
-
Save benedikt/d2c2ad5ad46e569f9dc266abf045f089 to your computer and use it in GitHub Desktop.
Revisions
-
benedikt revised this gist
Jun 17, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,5 @@ String, is pending: {{is-pending "hello"}}<br /> Array, is pending (wrapped in `await`): {{is-pending (await (array "one" "two" "three"))}}<br /> <h1>Fails</h1> Array, is pending: {{is-pending (array "one" "two" "three")}} -
benedikt revised this gist
Jun 17, 2020 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,4 @@ String, is pending: {{is-pending "hello"}}<br /> Array, is pending (wrapped in `await`): {{is-pending (await (array "one" "two" "three"))}}<br /> <h1>Fails</h1> -
benedikt revised this gist
Jun 17, 2020 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,8 @@ <h1>Works</h1> String, is pending: {{is-pending "hello"}}<br /> Array, is pending (wrapped in `await`): {{is-pending (await (array "one" "two" "three"))}}<br /> <h1>Fails</h1> Array, is pending: {{is-pending (array "one" "two" "three")}} -
benedikt created this gist
Jun 17, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ import Controller from '@ember/controller'; export default class ApplicationController extends Controller { appName = 'Ember Twiddle'; } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ String, is pending: {{is-pending "hello"}}<br /> Array, is pending (wrapped in `await`): {{is-pending (await (array "one" "two" "three"))}}<br /> Array, is pending: {{is-pending (array "one" "two" "three")}} This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ { "version": "0.17.1", "EmberENV": { "FEATURES": {}, "_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false, "_APPLICATION_TEMPLATE_WRAPPER": true, "_JQUERY_INTEGRATION": true }, "options": { "use_pods": false, "enable-testing": false }, "dependencies": { "jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js", "ember": "3.18.1", "ember-template-compiler": "3.18.1", "ember-testing": "3.18.1" }, "addons": { "@glimmer/component": "1.0.0", "ember-promise-helpers": "1.0.9" } }