diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-02-11 20:27:05 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-02-11 20:27:05 -0500 |
commit | 6eba790a75ba128e3182771a30dbe88733ee0dfc (patch) | |
tree | ba313bec694c64928d82e2b76445d6307a305b22 /apps/files_external/js/google.js | |
parent | 6f08b1f829e9d4c49f66b19fdda8c229bc8ae3f3 (diff) | |
parent | 04bf8c1b66d6adef0466efae00c32745465767f2 (diff) | |
download | nextcloud-server-6eba790a75ba128e3182771a30dbe88733ee0dfc.tar.gz nextcloud-server-6eba790a75ba128e3182771a30dbe88733ee0dfc.zip |
Merge branch 'master' into external_storage_ui_feedback
Conflicts:
apps/files_external/js/dropbox.js
apps/files_external/js/google.js
apps/files_external/js/settings.js
apps/files_external/lib/amazons3.php
apps/files_external/lib/dropbox.php
apps/files_external/lib/google.php
apps/files_external/lib/smb.php
apps/files_external/lib/swift.php
apps/files_external/lib/webdav.php
lib/filestorage.php
Diffstat (limited to 'apps/files_external/js/google.js')
-rw-r--r-- | apps/files_external/js/google.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_external/js/google.js b/apps/files_external/js/google.js index ad6fc6a0f9a..46333d89d68 100644 --- a/apps/files_external/js/google.js +++ b/apps/files_external/js/google.js @@ -4,7 +4,7 @@ $(document).ready(function() { setupGoogleRow(tr); }); - $('#selectBackend').live('change', function() { + $('#selectBackend').on('change', function() { if ($(this).val() == 'OC_Filestorage_Google') { setupGoogleRow($('#externalStorage tbody>tr:last').prev('tr')); } @@ -43,18 +43,18 @@ $(document).ready(function() { } } - $('#externalStorage tbody tr.OC_Filestorage_Google td').live('paste', function() { + $('#externalStorage tbody').on('paste', 'tr.OC_Filestorage_Google td', function() { var tr = $(this).parent(); setTimeout(function() { onGoogleInputsChange(tr); }, 20); }); - $('#externalStorage tbody tr.OC_Filestorage_Google td').live('keyup', function() { + $('#externalStorage tbody').on('keyup', 'tr.OC_Filestorage_Google td', function() { onGoogleInputsChange($(this).parent()); }); - $('#externalStorage tbody tr.OC_Filestorage_Google .chzn-select').live('change', function() { + $('#externalStorage tbody').on('change', 'tr.OC_Filestorage_Google .chzn-select', function() { onGoogleInputsChange($(this).parent().parent()); }); @@ -73,7 +73,7 @@ $(document).ready(function() { } } - $('.google').live('click', function(event) { + $('.google').on('click', function(event) { event.preventDefault(); var tr = $(this).parent().parent(); var configured = $(this).parent().find('[data-parameter="configured"]'); |