]> source.dussan.org Git - nextcloud-server.git/commitdiff
also add new parameter to function calls
authorMorris Jobke <morris.jobke@gmail.com>
Tue, 29 Oct 2013 13:22:24 +0000 (14:22 +0100)
committerMorris Jobke <morris.jobke@gmail.com>
Tue, 29 Oct 2013 13:22:24 +0000 (14:22 +0100)
core/js/share.js

index 352ad4d4ca8a39f0ef9460bf932fac46533fc76b..fe36059e12798aeab911d39fdaed77f67f07ca08 100644 (file)
@@ -601,7 +601,7 @@ $(document).ready(function() {
                var itemSourceName = $('#dropdown').data('item-source-name');
                if (this.checked) {
                        // Create a link
-                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, function(data) {
+                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, itemSourceName, function(data) {
                                OC.Share.showLink(data.token, null, itemSource);
                                OC.Share.updateIcon(itemType, itemSource);
                        });
@@ -641,7 +641,7 @@ $(document).ready(function() {
                }
 
                // Update the share information
-               OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) {
+               OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName, function(data) {
                });
        });
 
@@ -662,7 +662,7 @@ $(document).ready(function() {
                        }
 
 
-                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions);
+                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName);
                } else {
                        $('#linkPassText').focus();
                }
@@ -686,7 +686,7 @@ $(document).ready(function() {
                                permissions = OC.PERMISSION_READ;
                        }
 
-                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, function() {
+                       OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, itemSourceName, function() {
                                console.log("password set to: '" + linkPassText.val() +"' by event: " + event.type);
                                linkPassText.val('');
                                linkPassText.attr('placeholder', t('core', 'Password protected'));