remove debug output

This commit is contained in:
Björn Schießle 2013-01-29 22:20:47 +01:00
parent afad6e95db
commit 56c6e6a334
1 changed files with 0 additions and 3 deletions

View File

@ -311,11 +311,8 @@ $(document).ready(function () {
img.parent().children('span').replaceWith(input);
input.focus();
input.keypress(function (event) {
console.log("event!");
if (event.keyCode == 13) {
console.log("13");
if ($(this).val().length > 0) {
console.log("post");
$.post(
OC.filePath('settings', 'ajax', 'changedisplayname.php'),
{username:uid, displayName:$(this).val()},