summaryrefslogtreecommitdiffstats
path: root/module/webui/themes/default/js/sources/admin.coffee
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-08-28 04:51:53 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-08-28 04:51:53 +0200
commit653d637b4ee1aa6fd112c11bf082883c3252c928 (patch)
tree644f2f253d9a9ad16eaf75a534b9f21215237fd2 /module/webui/themes/default/js/sources/admin.coffee
parentMove ServerThread and PluginThread to threads directory (diff)
downloadpyload-653d637b4ee1aa6fd112c11bf082883c3252c928.tar.xz
[webui] Improve and fix
Diffstat (limited to 'module/webui/themes/default/js/sources/admin.coffee')
-rw-r--r--module/webui/themes/default/js/sources/admin.coffee58
1 files changed, 0 insertions, 58 deletions
diff --git a/module/webui/themes/default/js/sources/admin.coffee b/module/webui/themes/default/js/sources/admin.coffee
deleted file mode 100644
index c4ab86911..000000000
--- a/module/webui/themes/default/js/sources/admin.coffee
+++ /dev/null
@@ -1,58 +0,0 @@
-root = this
-
-window.addEvent "domready", ->
-
- root.passwordDialog = new MooDialog {destroyOnHide: false}
- root.passwordDialog.setContent $ 'password_box'
-
- $("login_password_reset").addEvent "click", (e) -> root.passwordDialog.close()
- $("login_password_button").addEvent "click", (e) ->
-
- newpw = $("login_new_password").get("value")
- newpw2 = $("login_new_password2").get("value")
-
- if newpw is newpw2
- form = $("password_form")
- form.set "send", {
- onSuccess: (data) ->
- root.notify.alert "Success", {
- 'className': 'success'
- }
- onFailure: (data) ->
- root.notify.alert "Error", {
- 'className': 'error'
- }
- }
-
- form.send()
-
- root.passwordDialog.close()
- else
- alert '{{_("Passwords did not match.")}}'
-
- e.stop()
-
- for item in $$(".change_password")
- id = item.get("id")
- user = id.split("|")[1]
- $("user_login").set("value", user)
- item.addEvent "click", (e) -> root.passwordDialog.open()
-
- $('quit-pyload').addEvent "click", (e) ->
- new MooDialog.Confirm "{{_('You are really sure you want to quit pyLoad?')}}", ->
- new Request.JSON({
- url: '/api/kill'
- method: 'get'
- }).send()
- , ->
- e.stop()
-
- $('restart-pyload').addEvent "click", (e) ->
- new MooDialog.Confirm "{{_('Are you sure you want to restart pyLoad?')}}", ->
- new Request.JSON({
- url: '/api/restart'
- method: 'get'
- onSuccess: (data) -> alert "{{_('pyLoad restarted')}}"
- }).send()
- , ->
- e.stop()