-
## huabao 组件现在支持两种数据源方式:
1. 页面中的 json;
2. 通过 ajax 返回的远程数据。
单独再提供一个异步接口来返回这种数据格式的开发成本还是有的,建议是加上支持无数据源的配置项,即数据是一开始就通过后台输出到页面上的,画报组件初始化之即可。
-
# KISSY Version :
-
custom event is same with dom event
``` javascript
function Link(){
this.publish('click',{
defaultFn:function(){
location=this.href;
}
});
}
a = new Link();
a.on('click',fun…
-
touchstart == mousedown
touchend == mouseup
??
-
I am moving jsdoc-tookit to jsduck:
http://docs.kissyui.com/kissy/docs/
now i am confused by why jsdoc does not support @lends.
http://code.google.com/p/jsdoc-toolkit/wiki/TagLends
I used this tag…
-
arguments支持[]和length属性,如果不需要数组方法,不需要转化为数组类型吧?
scil updated
11 years ago
-
模块多了,我想换行,现在不好搞阿
```
S.use('a,
b,
c',callback);
```
报错啊
我想要这样
```
S.use('a',
'b',
'c',callback);
```
jayli updated
11 years ago
-
替换目前的 kissy css 模块
最好兼容 ie6,至少兼容 ie7 以上
-
KISSY.use("waterfall,ajax,template,node,button", function(S, Waterfall, io, Template, Node, Button) {
var $ = Node.all;
var tpl = Template($('#tpl').html()),
nextpage = 1,
wat…
-
# KISSY Version :