diff --git a/src/dev-center/index.html b/src/dev-center/index.html index a3087e969..df732a9ba 100644 --- a/src/dev-center/index.html +++ b/src/dev-center/index.html @@ -19,6 +19,10 @@ + + + + diff --git a/src/dev-center/js/dev-center.js b/src/dev-center/js/dev-center.js index 43c390039..441133795 100644 --- a/src/dev-center/js/dev-center.js +++ b/src/dev-center/js/dev-center.js @@ -53,7 +53,9 @@ const deploying_spinner = ``; const drop_area_placeholder = `
Drop your app folder and files here to deploy.
HTML, JS, CSS, ...
`; const index_missing_error = `Please upload an 'index.html' file or if you're uploading a directory, make sure it contains an 'index.html' file at its root.`; -const lock_svg = ''; +const lock_svg = ``; +const lock_svg_tippy = ``; + const copy_svg = ``; // authUsername @@ -162,6 +164,7 @@ $(document).ready(function () { }); count_apps(); sort_apps(); + activate_tippy(); } else { $('#no-apps-notice').show(); } @@ -202,6 +205,7 @@ function refresh_app_list(show_loading = false) { $('#no-apps-notice').show(); $('#app-list').hide() } + activate_tippy(); }) }, show_loading ? 1000 : 0); } @@ -337,6 +341,7 @@ async function create_app(title, source_path = null, items = null) { } else if (items) { deploy(app, items); } + activate_tippy(); }, (Date.now() - start_ts) > 2000 ? 1 : 2000 - (Date.now() - start_ts)); }) }).catch(async (err) => { @@ -493,7 +498,7 @@ function generate_edit_app_section(app) {