diff --git a/src/app/ui/landing-page/landing-page.js b/src/app/ui/landing-page/landing-page.js index 8d7f15b760..2973ebadbc 100644 --- a/src/app/ui/landing-page/landing-page.js +++ b/src/app/ui/landing-page/landing-page.js @@ -90,11 +90,12 @@ export class LandingPage extends BaseApi { } render () { - let load = function (service, item, examples) { + let load = function (service, item, examples, info) { let compilerImport = new CompilerImport() let fileProviders = globalRegistry.get('fileproviders').api const msg = yo`
Enter the ${item} you would like to load. -
e.g ${examples.map((url) => { return yo`
${url}
` })}
` +
${info}
+
e.g ${examples.map((url) => { return yo`
${url}
` })}
` modalDialogCustom.prompt(`Import from ${service}`, msg, null, (target) => { if (target !== '') { @@ -216,9 +217,11 @@ export class LandingPage extends BaseApi {

Import From:

- + + +
diff --git a/src/app/ui/modaldialog.js b/src/app/ui/modaldialog.js index 61c644f38d..929a4875e0 100644 --- a/src/app/ui/modaldialog.js +++ b/src/app/ui/modaldialog.js @@ -135,7 +135,7 @@ function html (opts) { - +