Prevent text selection
This commit is contained in:
parent
d379c5e104
commit
881d4acbc3
|
@ -16,6 +16,7 @@
|
|||
width: 100vw;
|
||||
overflow: hidden;
|
||||
font-family: Helsinki;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -266,7 +267,7 @@
|
|||
|
||||
var numRowsToRemove = rowsToRemove.length;
|
||||
|
||||
if (rowsToRemove.length == 0) return;
|
||||
if (numRowsToRemove == 0) return;
|
||||
|
||||
rowsToRemove.addClass("removing");
|
||||
|
||||
|
|
Loading…
Reference in New Issue