aboutsummaryrefslogtreecommitdiff
path: root/templates/page.julius
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.julius')
-rw-r--r--templates/page.julius17
1 files changed, 0 insertions, 17 deletions
diff --git a/templates/page.julius b/templates/page.julius
deleted file mode 100644
index a9d0b4223..000000000
--- a/templates/page.julius
+++ /dev/null
@@ -1,17 +0,0 @@
-connfailed =
- '<div id="modal" class="modal fade">' +
- ' <div class="modal-header">' +
- ' <h3>git-annex has shut down</h3>' +
- ' </div>' +
- ' <div class="modal-body">' +
- ' You can now close this browser window.' +
- ' </div>' +
- '</div>' ;
-
-function webapp_disconnected () {
- $('#modal').replaceWith(connfailed);
- $('#modal').modal('show');
-
- // ideal, but blocked by many browsers
- window.close();
-}