Moving towards Application thing and reactivity.

This commit is contained in:
2020-05-17 19:37:58 +05:00
parent 9ffaaa219e
commit 6c55dbc690
10 changed files with 381 additions and 221 deletions

View File

@@ -23,24 +23,26 @@
package common
const (
HTMLElementA = "a"
HTMLElementBody = "body"
HTMLElementButton = "button"
HTMLElementDiv = "div"
HTMLElementDocument = "document"
HTMLElementHead = "head"
HTMLElementLink = "link"
HTMLElementMeta = "meta"
HTMLElementNav = "nav"
HTMLElementP = "p"
HTMLElementSection = "section"
HTMLElementTable = "table"
HTMLElementTBody = "tbody"
HTMLElementTD = "td"
HTMLElementTFoot = "tfoot"
HTMLElementTH = "th"
HTMLElementTHead = "thead"
HTMLElementTR = "tr"
HTMLElementA = "a"
HTMLElementBody = "body"
HTMLElementButton = "button"
HTMLElementDiv = "div"
HTMLElementDocument = "document"
HTMLElementDocumentElement = "documentElement"
HTMLElementHead = "head"
HTMLElementHTML = "html"
HTMLElementLink = "link"
HTMLElementMeta = "meta"
HTMLElementNav = "nav"
HTMLElementP = "p"
HTMLElementSection = "section"
HTMLElementTable = "table"
HTMLElementTBody = "tbody"
HTMLElementTD = "td"
HTMLElementTFoot = "tfoot"
HTMLElementTH = "th"
HTMLElementTHead = "thead"
HTMLElementTR = "tr"
HTMLElementParameterClassList = "classList"
HTMLElementParameterHref = "href"
@@ -54,11 +56,12 @@ const (
HTMLHeadElementTitle = "title"
JSCallAdd = "add"
JSCallAddEventListener = "addEventListener"
JSCallAppendChild = "appendChild"
JSCallCreateElement = "createElement"
JSCallQuerySelector = "querySelector"
JSCallAdd = "add"
JSCallAddEventListener = "addEventListener"
JSCallAppendChild = "appendChild"
JSCallCreateElement = "createElement"
JSCallGetElementsByTagName = "getElementsByTagName"
JSCallQuerySelector = "querySelector"
JSConsole = "console"