Changeset 2709709
- Timestamp:
- 04/14/2022 10:23:12 AM (4 years ago)
- Location:
- easy-liveblogs
- Files:
-
- 6 edited
- 1 copied
-
tags/1.7.1 (copied) (copied from easy-liveblogs/trunk)
-
tags/1.7.1/assets/js/easy-liveblogs.js (modified) (3 diffs)
-
tags/1.7.1/easy-liveblogs.php (modified) (2 diffs)
-
tags/1.7.1/readme.txt (modified) (2 diffs)
-
trunk/assets/js/easy-liveblogs.js (modified) (3 diffs)
-
trunk/easy-liveblogs.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-liveblogs/tags/1.7.1/assets/js/easy-liveblogs.js
r2697751 r2709709 31 31 exclude: elb_exclude, 32 32 liveblog: elb.liveblog, 33 after: elb_liveblog.find(' li:first').attr('data-elb-post-datetime')33 after: elb_liveblog.find('> li:first').attr('data-elb-post-datetime') 34 34 }, 35 35 success: function (posts) { … … 80 80 81 81 elb_load_new_btn.click(function () { // reset 82 $('.elb-liveblog-list li').not(':visible').fadeIn();82 $('.elb-liveblog-list > li').not(':visible').fadeIn(); 83 83 elb_new_posts = 0; 84 84 elb_load_new_btn.hide(); … … 98 98 liveblog: elb.liveblog, 99 99 action: 'elb_load_more', 100 before: elb_liveblog.find(' li:last').attr('data-elb-post-datetime')100 before: elb_liveblog.find('> li:last').attr('data-elb-post-datetime') 101 101 }, 102 102 success: function (posts) { -
easy-liveblogs/tags/1.7.1/easy-liveblogs.php
r2697751 r2709709 4 4 Plugin URI: https://vanrossum.dev 5 5 Description: Live blogging made easy with the Easy Liveblogs plugin from vanrossum.dev. 6 Version: 1.7. 06 Version: 1.7.1 7 7 Author: Jeffrey van Rossum 8 8 Author URI: https://www.vanrossum.dev … … 26 26 private $plugin_url; 27 27 private $plugin_name = 'Easy Liveblogs'; 28 private $plugin_version = '1.7. 0';28 private $plugin_version = '1.7.1'; 29 29 private $text_domain = 'easy-liveblogs'; 30 30 public $liveblog; -
easy-liveblogs/tags/1.7.1/readme.txt
r2697751 r2709709 7 7 Requires at least: 4.4 8 8 Tested up to: 5.9 9 Stable Tag: 1.7. 09 Stable Tag: 1.7.1 10 10 License: MIT 11 11 … … 39 39 40 40 = Unreleased = 41 42 = 1.7.1, April 14, 2022 = 43 * Fix not loading more entries when last item contains a list item. 41 44 42 45 = 1.7.0, March 22, 2022 = -
easy-liveblogs/trunk/assets/js/easy-liveblogs.js
r2697751 r2709709 31 31 exclude: elb_exclude, 32 32 liveblog: elb.liveblog, 33 after: elb_liveblog.find(' li:first').attr('data-elb-post-datetime')33 after: elb_liveblog.find('> li:first').attr('data-elb-post-datetime') 34 34 }, 35 35 success: function (posts) { … … 80 80 81 81 elb_load_new_btn.click(function () { // reset 82 $('.elb-liveblog-list li').not(':visible').fadeIn();82 $('.elb-liveblog-list > li').not(':visible').fadeIn(); 83 83 elb_new_posts = 0; 84 84 elb_load_new_btn.hide(); … … 98 98 liveblog: elb.liveblog, 99 99 action: 'elb_load_more', 100 before: elb_liveblog.find(' li:last').attr('data-elb-post-datetime')100 before: elb_liveblog.find('> li:last').attr('data-elb-post-datetime') 101 101 }, 102 102 success: function (posts) { -
easy-liveblogs/trunk/easy-liveblogs.php
r2697751 r2709709 4 4 Plugin URI: https://vanrossum.dev 5 5 Description: Live blogging made easy with the Easy Liveblogs plugin from vanrossum.dev. 6 Version: 1.7. 06 Version: 1.7.1 7 7 Author: Jeffrey van Rossum 8 8 Author URI: https://www.vanrossum.dev … … 26 26 private $plugin_url; 27 27 private $plugin_name = 'Easy Liveblogs'; 28 private $plugin_version = '1.7. 0';28 private $plugin_version = '1.7.1'; 29 29 private $text_domain = 'easy-liveblogs'; 30 30 public $liveblog; -
easy-liveblogs/trunk/readme.txt
r2697751 r2709709 7 7 Requires at least: 4.4 8 8 Tested up to: 5.9 9 Stable Tag: 1.7. 09 Stable Tag: 1.7.1 10 10 License: MIT 11 11 … … 39 39 40 40 = Unreleased = 41 42 = 1.7.1, April 14, 2022 = 43 * Fix not loading more entries when last item contains a list item. 41 44 42 45 = 1.7.0, March 22, 2022 =
Note: See TracChangeset
for help on using the changeset viewer.