Commit d92d4009 authored by jgould's avatar jgould

filter modal

parent 3aa66419
...@@ -354,6 +354,7 @@ morpheus.HeatMapToolBar = function(controller) { ...@@ -354,6 +354,7 @@ morpheus.HeatMapToolBar = function(controller) {
$filterChooser.find('[value=rows]').prop('checked', true); $filterChooser.find('[value=rows]').prop('checked', true);
columnFilterUI.$div.hide(); columnFilterUI.$div.hide();
rowFilterUI.$div.show(); rowFilterUI.$div.show();
$filterModal.modal('show');
morpheus.Util.trackEvent({ morpheus.Util.trackEvent({
eventCategory : 'ToolBar', eventCategory : 'ToolBar',
eventAction : 'rowFilter' eventAction : 'rowFilter'
...@@ -364,6 +365,7 @@ morpheus.HeatMapToolBar = function(controller) { ...@@ -364,6 +365,7 @@ morpheus.HeatMapToolBar = function(controller) {
$filterChooser.find('[value=columns]').prop('checked', true); $filterChooser.find('[value=columns]').prop('checked', true);
columnFilterUI.$div.show(); columnFilterUI.$div.show();
rowFilterUI.$div.hide(); rowFilterUI.$div.hide();
$filterModal.modal('show');
morpheus.Util.trackEvent({ morpheus.Util.trackEvent({
eventCategory : 'ToolBar', eventCategory : 'ToolBar',
eventAction : 'columnFilter' eventAction : 'columnFilter'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment