Skip to content

Commit

Permalink
view 增加ps方法
Browse files Browse the repository at this point in the history
  • Loading branch information
dorsywang committed Apr 14, 2015
1 parent a91d034 commit 046caaa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion combined/alloyimage.js
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,11 @@ try{
//挂接克隆图层副本到对象
this.addLayer(newLayer, "正常", 0, 0);

newLayer.act(method, arg1, arg2, arg3, arg4);
if(method === "ps"){
newLayer.ps(arg1, arg2, arg3, arg4);
}else{
newLayer.act(method, arg1, arg2, arg3, arg4);
}
}

return this;
Expand Down
Loading

0 comments on commit 046caaa

Please sign in to comment.