Skip to content

Commit

Permalink
hideloading
Browse files Browse the repository at this point in the history
  • Loading branch information
yangcunfeng committed Jun 30, 2016
1 parent 53dd02f commit 2e9fd35
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions assets/Script/Common.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,18 @@ cc.Class({
var label_table_code = node_table_bg.getChildByName("table_code").getComponent(cc.Label);
label_table_code.string = "盲注 "+sb_data['table_chip']+"/"+bb_data['table_chip'];
};
//删除加载图片
var splash = document.getElementById('splash');
if(undefined!=splash){
splash.style.display = 'none';
}
this.cleanLoading();
});

},
//隐藏加载过程
cleanLoading:function(){
//删除加载图片
var splash = document.getElementById('splash');
if(undefined!=splash){
splash.style.display = 'none';
}
},
resetSeat:function(){
var table_data = this.hand_data;
var node_table_bg = cc.find("Canvas/table_bg");
Expand Down

0 comments on commit 2e9fd35

Please sign in to comment.