UNPKG
@tower1229/flow-ui
Version:
latest (1.0.1)
1.0.1
1.0.0
Highly customizable UI framework based Seajs/jQuery
github.com/flow-ui/Flow-UI
flow-ui/Flow-UI
@tower1229/flow-ui
/
flow-ui
/
js
/
index2_pjax.js
20 lines
(16 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** * index */
define
(
function
(
require
) {
var
$ =
require
(
'jquery'
);
var
base =
require
(
'base'
);
var
com =
require
(
'./common_pjax'
);
return
function
(
){ com.
init
();
//my js
require
(
'box'
); $.box.
msg
(
'hello p2!'
,{
color
:
'info'
}) } })