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

This commit is contained in:
Rashid Khan 2013-03-20 21:30:04 -07:00
parent 13097a5a22
commit 79dbffc875

View File

@ -140,7 +140,9 @@ angular.module('kibana.map', [])
onRegionOut: function(event, code) {
},
onRegionClick: function(event, code) {
scope.build_search(scope.panel.field,code)
var count = _.isUndefined(scope.data[code]) ? 0 : scope.data[code];
if (count != 0)
scope.build_search(scope.panel.field,code)
}
});
})