瀏覽代碼

fixed next element error when pressing tab

Gildas 5 年之前
父節點
當前提交
d5502f8ece
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      extension/ui/content/content-ui-editor-web.js

+ 1 - 0
extension/ui/content/content-ui-editor-web.js

@@ -1204,6 +1204,7 @@ table {
 					if (nextElement) {
 						let pathIndex = cuttingPathIndex + delta;
 						while (
+							nextElement &&
 							(delta == 1 &&
 								element.getBoundingClientRect().width >= nextElement.getBoundingClientRect().width &&
 								element.getBoundingClientRect().height >= nextElement.getBoundingClientRect().height) ||