Changeset 2606349
- Timestamp:
- 09/28/2021 07:04:54 PM (5 years ago)
- Location:
- mondoplayer/trunk
- Files:
-
- 2 edited
-
js/web_player_v2.js (modified) (1 diff)
-
mondoplayer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mondoplayer/trunk/js/web_player_v2.js
r2603206 r2606349 5318 5318 continue; 5319 5319 } 5320 let cur_hashtags = JSON.parse(state.autopilots.list[i].hashtags_string); 5320 let cur_hashtags = {fixed:[],variable:[],search:[]}; 5321 if (state.autopilots.list[i].hashtags_string != null && state.autopilots.list[i].hashtags_string != "") { 5322 cur_hashtags = JSON.parse(state.autopilots.list[i].hashtags_string); 5323 } else { 5324 state.autopilots.list[i].hashtags_string = JSON.stringify(cur_hashtags); 5325 } 5321 5326 for (var t = 0; t < cur_hashtags.fixed.length; t++) { 5322 5327 hashtag_list[cur_hashtags.fixed[t]] = 1; -
mondoplayer/trunk/mondoplayer.php
r2603206 r2606349 5 5 Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video. 6 6 Author: MondoTag 7 Version: 1.0.34 17 Version: 1.0.342 8 8 Tested up to: 5.7.2 9 9 License: GPLv2 or later … … 188 188 189 189 wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.52' ); 190 wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.11 3' );190 wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.114' ); 191 191 $db = get_option("mondoplayer_db_version", ''); 192 192 if ($db != $db_version) {
Note: See TracChangeset
for help on using the changeset viewer.