summaryrefslogtreecommitdiffstats
path: root/settings/js
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-08 23:32:54 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-08-08 23:46:52 +0200
commit7b38e5d7c73cb29a5b57bb36b9f22ce2672cb325 (patch)
tree132b282b41ab4ac2c2374b455255b8514b6b000c /settings/js
parent82d2c45e14e5089defef8712dafa0fe97e16f8e0 (diff)
downloadnextcloud-server-7b38e5d7c73cb29a5b57bb36b9f22ce2672cb325.tar.gz
nextcloud-server-7b38e5d7c73cb29a5b57bb36b9f22ce2672cb325.zip
apps can now add their own forms to the Personal page
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/main.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/settings/js/main.js b/settings/js/main.js
index e6ca30d0ce4..f6b7eeb7584 100644
--- a/settings/js/main.js
+++ b/settings/js/main.js
@@ -19,17 +19,6 @@ $(document).ready(function(){
return false;
});
- $('#openidform').submit(function(event){
- event.preventDefault();
- var post = $( "#openidform" ).serialize();
- $.post( 'ajax/openid.php', post, function(data){
- if( data.status == "success" ){
- }else{
- alert('error while setting OpenID');
- }
- });
- });
-
$("#languageinput").change( function(){
// Serialize the data
var post = $( "#languageinput" ).serialize();