Skip to content

Commit

Permalink
更新可用余额金额显示小数
Browse files Browse the repository at this point in the history
  • Loading branch information
tension committed Jun 23, 2016
1 parent bec3007 commit 611dc71
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions templates/NeWorld/assets/js/whmcs.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,12 @@ var ShowMoeny = function() {
var moeny = jQuery('.mymoeny').data('money');
var val = moeny.split('.');
jQuery('.mymoeny').html(val[0]);
var smallmoney = val[1].split('元');
jQuery('.user-balance-small').html('.' + smallmoney[0]);
};
//if (jQuery(':lang(en_GB)')) {
// jQuery('.suffix').html('RMB');
//}
};
var handlePackageSwitcher = function() {
"use strict";
Expand Down

0 comments on commit 611dc71

Please sign in to comment.