UNPKG
blinx
Version:
latest (1.0.0)
1.0.0
0.9.73
0.9.72
0.9.71
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.0
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.0.1
The Scalable JavaScript Application Framework
github.com/blinxjs/blinxjs
blinxjs/blinxjs
blinx
/
examples
/
basic-app
/
apps
/
content
/
index.js
14 lines
(12 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
template
from
"./template.html"
;
import
"./style.less"
;
function
onRenderComplete
(
){
var
that =
this
;
setTimeout
(
function
(
){ that.
publish
(
"HEADER_EVENT"
,{}); },
3000
); }
export
default
{ template, onRenderComplete };