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
/
dashboard
/
js
/
dragpanel.js
19 lines
(14 loc)
•
341 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * blank */
define
(
function
(
require
) {
var
$ =
require
(
'jquery'
);
var
com=
require
(
'./common'
);
//
require
(
'drag-panel'
); $(
'#wrapper'
).
dragPanel
({
ondrag
:
function
(
newSort
) {
console
.
log
(newSort); } }); });