(e)
| 457 | this.horiz.style.minHeight = this.vert.style.minWidth = w; |
| 458 | var self = this; |
| 459 | var barMouseDown = function(e) { |
| 460 | if (e_target(e) != self.vert && e_target(e) != self.horiz) |
| 461 | operation(self.cm, onMouseDown)(e); |
| 462 | }; |
| 463 | on(this.vert, "mousedown", barMouseDown); |
| 464 | on(this.horiz, "mousedown", barMouseDown); |
| 465 | }, |