Message from JavaScript discussions
November 2017
— What like design?
Entry method (gets run once at start) for filter
, it runs the entry methods for clone
and paths
as an example:
entry: function (state) {
strategies.clone.entry(state);
strategies.paths.entry(state);
state.pendingPaths = [];
},
— I am not very interested in web design but I have 12 years of experience in it
— I can do it in my sleep- so it is not exciting
— I can crap out whole web apps and sites in like 5 mins... while on the toilet, hahaha
— So it's just boring
— Same thing to me, but I have made a few windowing systems
— Dialog boxes etc
—
for (var row in rows) {
cdaTemplate.loadTemplate("#rowTemplate", "#templateContainer", {
append: true,
data: row
});
}
—
<template id="rowTemplate">
<div data-content-text="column0"></div>
<div data-content-text="column1"></div>
<div data-content-text="column2"></div>
<div data-content-text="column3"></div>
</template>
—
var rows = [
{
column0: "Name",
column1: "Age",
column2: "Job",
column3: "Favorite Color"
},
{
column0: "Dani",
column1: "24",
column2: "SysAdmin",
column3: "Purple"
}
];
— There, quick attempt :P