From 6eaae2e6c051f119e06133b39bcefe1128c6f4d4 Mon Sep 17 00:00:00 2001 From: frank pagan Date: Sat, 21 Aug 2021 23:54:20 +0000 Subject: [PATCH] fix: update attribute name test-parent_id and test-page_id tp parent_id and page_id --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index b05848e..e12fb06 100644 --- a/src/index.js +++ b/src/index.js @@ -33,8 +33,8 @@ function CoCreateWindow(id) { //. set parent_id and page_id for test var html = document.querySelector("html"); - html.setAttribute("test-parent_id", this.parentId); - html.setAttribute("test-page_id", this.pageId); + html.setAttribute("parent_id", this.parentId); + html.setAttribute("page_id", this.pageId); } CoCreateWindow.prototype = {