Plugin Directory

Changeset 2012152


Ignore:
Timestamp:
01/14/2019 04:48:32 PM (7 years ago)
Author:
sean0010
Message:

steem.js API name fix(total_pending_payout_value)

Location:
steemeasy/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • steemeasy/trunk/js/helper.js

    r1978988 r2012152  
    8484        getPayout: function(discussion) {
    8585            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]);
    8787            var totalPayoutValue = parseFloat(discussion.total_payout_value.split(' ')[0]);
    8888            var result = pendingPayout + totalPendingPayout + totalPayoutValue;
  • steemeasy/trunk/readme.txt

    r1978992 r2012152  
    5151
    5252== Changelog ==
     53= 0.5.6 =
     54* steem.js API name fix(total_pending_payout_value)
     55
    5356= 0.5.5 =
    5457* Publish Post bugfix
  • steemeasy/trunk/steem.php

    r1978988 r2012152  
    44Plugin URI:  https://github.com/sean0010/press
    55Description: Steem Wordpress Plugin
    6 Version:     0.5.5
     6Version:     0.5.6
    77Author:      morning
    88Author URI:  htps://steemit.com/@morning
     
    139139
    140140    wp_register_script('helper.js', plugin_dir_url( __FILE__ ) . 'js/helper.js');
    141     wp_enqueue_script('helper.js?v=30');
     141    wp_enqueue_script('helper.js?v=31');
    142142
    143143    wp_register_script('render.js', plugin_dir_url( __FILE__ ) . 'js/render.js');
Note: See TracChangeset for help on using the changeset viewer.