twister-calm/js/jQueryPlugins.js
Hedgehog b54e611797 big update
change files order, new DHT indicator in top menu, ‘back’ button in DM
conversations, sound notifications (alpha) and new page ‘Options’, few
fixes
2014-03-02 20:52:28 +04:00

14 lines
334 B
JavaScript

(function(jQuery) {
jQuery.fn.clickoutside = function(callback) {
var outside = 1, self = $(this);
self.cb = callback;
this.click(function() {
outside = 0;
});
$(document).click(function() {
outside && self.cb();
outside = 1;
});
return $(this);
}
})(jQuery);