Merge pull request #9260 from owncloud/fileactions-lateregisterinpublicpage

Allow late registration of file actions in public page
This commit is contained in:
Vincent Petry 2014-06-27 18:00:32 +02:00
commit 7a1b45c43b
2 changed files with 4 additions and 1 deletions

View File

@ -517,7 +517,6 @@
* This will refresh the file actions on the list.
*/
_onFileActionsUpdated: function() {
console.log('onFileActionsUpdated');
var self = this;
this.$fileList.find('tr td.filename').each(function() {
self.fileActions.display($(this), true, self);

View File

@ -33,6 +33,10 @@ OCA.Sharing.PublicApp = {
// regular actions
fileActions.merge(OCA.Files.fileActions);
// in case apps would decide to register file actions later,
// replace the global object with this one
OCA.Files.fileActions = fileActions;
this._initialized = true;
this.initialDir = $('#dir').val();