Fixed issue with double click

This commit is contained in:
Šime Vidas
2014-03-03 21:19:19 +01:00
parent ff6558b817
commit a8a976ce0b

View File

@@ -64,6 +64,11 @@ chrome.extension.sendMessage({}, function(response) {
e.preventDefault();
e.stopPropagation();
}, true);
container.addEventListener('dblclick', function(e) {
e.preventDefault();
e.stopPropagation();
}, true);
}
function runAction(action) {