Commit 79dbffc8 by Rashid Khan

fix for issue #18,disable click on map regions with 0 hits

parent 13097a5a
......@@ -140,6 +140,8 @@ angular.module('kibana.map', [])
onRegionOut: function(event, code) {
},
onRegionClick: function(event, code) {
var count = _.isUndefined(scope.data[code]) ? 0 : scope.data[code];
if (count != 0)
scope.build_search(scope.panel.field,code)
}
});
......
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