Angularjs - 根据分辨率禁用上下文菜单(单击鼠标右键)

时间:2016-03-08 20:34:13

标签: angularjs

我想根据分辨率禁用上下文菜单(单击鼠标右键)。

这是我的js代码:

angularRoutingApp.controller('mainController', function($scope,$window) {
        var w = angular.element($window);
        $(w).resize(function(){
            if (window.innerWidth<1024) {
// here i disabled the click right mouse
            }
        });
});

有什么想法吗?感谢,

0 个答案:

没有答案