Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apptemplate/js/admin.js')
-rwxr-xr-xapptemplate/js/admin.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/apptemplate/js/admin.js b/apptemplate/js/admin.js
deleted file mode 100755
index 4b0bef0b5..000000000
--- a/apptemplate/js/admin.js
+++ /dev/null
@@ -1,15 +0,0 @@
-$(document).ready(function(){
-
-
-
- $('#somesetting').blur(function(event){
- event.preventDefault();
- var post = $( "#somesetting" ).serialize();
- $.post( OC.filePath('apptemplate', 'ajax', 'seturl.php') , post, function(data){
- $('#apptemplate .msg').text('Finished saving: ' + data);
- });
- });
-
-
-
-});