i4way-dash/.svn/pristine/4f/4f630a051926ee4c60d9b2a9f23...

10 lines
236 B
Plaintext

JQVMap.prototype.bindZoomButtons = function () {
var map = this;
this.container.find('.jqvmap-zoomin').click(function(){
map.zoomIn();
});
this.container.find('.jqvmap-zoomout').click(function(){
map.zoomOut();
});
};