diff options
author | Simon Rettberg | 2013-11-05 20:25:55 +0100 |
---|---|---|
committer | Simon Rettberg | 2013-11-05 20:25:55 +0100 |
commit | e277baed387b642bb7e6707b49e55da4719a9c79 (patch) | |
tree | 350343881ddc35fe53862e971506bc405a9a7fad /script | |
parent | Tolle neue APIs Sachen (diff) | |
download | slx-admin-e277baed387b642bb7e6707b49e55da4719a9c79.tar.gz slx-admin-e277baed387b642bb7e6707b49e55da4719a9c79.tar.xz slx-admin-e277baed387b642bb7e6707b49e55da4719a9c79.zip |
Working on download of remote configs
Diffstat (limited to 'script')
-rw-r--r-- | script/custom.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/script/custom.js b/script/custom.js new file mode 100644 index 00000000..f2906813 --- /dev/null +++ b/script/custom.js @@ -0,0 +1,6 @@ +function loadContent(elem, source) +{ + $(elem).html('<div class="progress progress-striped active"><div class="progress-bar" style="width:100%"><span class="sr-only">In Progress....</span></div></div>'); + $(elem).load(source); +} + |