Changeset 2012152
- Timestamp:
- 01/14/2019 04:48:32 PM (7 years ago)
- Location:
- steemeasy/trunk
- Files:
-
- 3 edited
-
js/helper.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
steem.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
steemeasy/trunk/js/helper.js
r1978988 r2012152 84 84 getPayout: function(discussion) { 85 85 var pendingPayout = parseFloat(discussion.pending_payout_value.split(' ')[0]); 86 var totalPendingPayout = parseFloat(discussion. total_pending_payout_value.split(' ')[0]);86 var totalPendingPayout = parseFloat(discussion.pending_payout_value.split(' ')[0]); 87 87 var totalPayoutValue = parseFloat(discussion.total_payout_value.split(' ')[0]); 88 88 var result = pendingPayout + totalPendingPayout + totalPayoutValue; -
steemeasy/trunk/readme.txt
r1978992 r2012152 51 51 52 52 == Changelog == 53 = 0.5.6 = 54 * steem.js API name fix(total_pending_payout_value) 55 53 56 = 0.5.5 = 54 57 * Publish Post bugfix -
steemeasy/trunk/steem.php
r1978988 r2012152 4 4 Plugin URI: https://github.com/sean0010/press 5 5 Description: Steem Wordpress Plugin 6 Version: 0.5. 56 Version: 0.5.6 7 7 Author: morning 8 8 Author URI: htps://steemit.com/@morning … … 139 139 140 140 wp_register_script('helper.js', plugin_dir_url( __FILE__ ) . 'js/helper.js'); 141 wp_enqueue_script('helper.js?v=3 0');141 wp_enqueue_script('helper.js?v=31'); 142 142 143 143 wp_register_script('render.js', plugin_dir_url( __FILE__ ) . 'js/render.js');
Note: See TracChangeset
for help on using the changeset viewer.