[IMP] Disable right click on m2o button
[odoo/odoo.git] / addons / web / static / lib / jquery.contextmenu / jquery.contextmenu.r2.packed.js
index 2356f3b..47f542e 100644 (file)
                 display(index,this,e,options);
             return false;
         };
-        $(this).bind('contextmenu', callback);
-        if(options.leftClickToo) {
+        if (!options.noRightClick) {
+            $(this).bind('contextmenu', callback);
+        }
+        if (options.leftClickToo || options.noRightClick) {
             $(this).click(callback);
         }
         return this
 })(jQuery);
 $( function() {
     $('div.contextMenu').hide()
-});
\ No newline at end of file
+});