You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2014/06/18 20:52:18 UTC

git commit: updated refs/heads/master to 6fcd4fb

Repository: cloudstack
Updated Branches:
  refs/heads/master 31de58eda -> 6fcd4fbe7


List view: Pass ID to action pre-filters


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6fcd4fbe
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6fcd4fbe
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6fcd4fbe

Branch: refs/heads/master
Commit: 6fcd4fbe7bef8c7d93d0e8fd0e3a453abadb724f
Parents: 31de58e
Author: Brian Federle <br...@citrix.com>
Authored: Wed Jun 18 11:50:06 2014 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Wed Jun 18 11:52:06 2014 -0700

----------------------------------------------------------------------
 ui/scripts/ui/widgets/listView.js | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6fcd4fbe/ui/scripts/ui/widgets/listView.js
----------------------------------------------------------------------
diff --git a/ui/scripts/ui/widgets/listView.js b/ui/scripts/ui/widgets/listView.js
index 16138e4..0e91b45 100644
--- a/ui/scripts/ui/widgets/listView.js
+++ b/ui/scripts/ui/widgets/listView.js
@@ -1748,6 +1748,7 @@
             $.each(listViewData.actions, function(actionName, action) {
                 if (!action.isHeader || (
                     action.preFilter && !action.preFilter({
+                        id: listViewData.id,
                         context: $listView.data('view-args').context ? $listView.data('view-args').context : cloudStack.context
                     })
                 )) return true;