summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--how.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/how.js b/how.js
index 4997369..7193d50 100644
--- a/how.js
+++ b/how.js
@@ -420,7 +420,7 @@ jQuery(document).ready(function() {
var move = m.split('-');
var listCell = jQuery('<div>').addClass('list-movement').attr('data-movement', m).text(move[0]);
var listRow = moveList.find('div[data-rounds="'+move[1]+'"]');
- if (listRow.size()) {
+ if (listRow.length) {
listRow.append(listCell);
}
else {