-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrowcolumn.js
52 lines (51 loc) · 1.33 KB
/
rowcolumn.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"use strict"
import {
addSyntax
} from './main/syntax/syntax.js'
import Grid from './main/grid/gridconstructor.js'
import style from './main/grid/cartesiansystem.js'
import assignCoordinate from './main/grid/assigncoordinate.js'
import children from './main/grid/children.js'
import {
addRearrange
} from './main/rearrange/rearrange.js'
import {
addDevise
} from './main/devise/devise.js'
import {
addExtract
} from './main/extract/extract.js'
import {
addComponents
} from './main/add/add.js'
import set from './apply/applygrid.js'
import {
breakpoint,
order,
offset,
property,
childProperty
} from './components/names/functions.js'
import repeat from './main/repeat/repeat.js'
import repeatCol from './main/repeat/col.js'
import repeatRow from './main/repeat/row.js'
window.addEventListener("load", () => {
let parent = 100;
let lg = 61.2;
let sm = 38.8;
addSyntax()
addRearrange()
addDevise()
addExtract()
addComponents()
repeatCol()
repeatRow()
const nodeList = document.querySelectorAll("div[layout]")
const composeObject = []
let i
for (i = 0; i < nodeList.length; i++) {
var att = nodeList[i].getAttribute("layout")
composeObject[i] = eval(att)
set(composeObject[i], nodeList[i])
}
})