Changes for page App Within Minutes

Last modified by Thomas Mortagne on 2019/02/28 11:44

From version 3.1
edited by Thomas Mortagne
on 2015/02/13 15:56
Change comment: Install extension [org.xwiki.platform:xwiki-platform-appwithinminutes-ui-6.4.1]
To version 1.1
edited by Thomas Mortagne
on 2013/05/08 15:09
Change comment: Imported from XAR

Summary

Details

Page properties
Content
... ... @@ -24,5 +24,4 @@
24 24  })
25 25  #set($columns = ['doc.space', 'doc.author', 'doc.date', '_actions'])
26 26  #livetable('livetable' $columns $columnsProperties $options)
27 -#set($docextras=[])
28 28  {{/velocity}}
XWiki.JavaScriptExtension[0]
Code
... ... @@ -2,5 +2,6 @@
2 2   // Add the xredirect parameter to the query string of the delete action to
3 3   // redirect the user back to the live table after an application is deleted.
4 4   var deleteLink = event.memo.row.down('td.actions').down('a.actiondelete');
5 - deleteLink.href = deleteLink.href + '&xredirect=' + encodeURIComponent(window.location.href);
5 + // The delete URL doesn't have any query string by default.
6 + deleteLink.href = deleteLink.href + '?xredirect=' + encodeURIComponent(window.location.href);
6 6  });