Changeset 2059980
- Timestamp:
- 03/30/2019 03:53:22 AM (7 years ago)
- Location:
- quick-call-button/trunk
- Files:
-
- 2 edited
-
quick-call-button.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-call-button/trunk/quick-call-button.php
r2059236 r2059980 7 7 Author URI: https://longvietweb.com/ 8 8 Author: LongViet 9 Version: 1.2. 09 Version: 1.2.1 10 10 License: GPL2 11 11 Text Domain: quickcallbutton 12 12 */ 13 13 14 define('LV_QUICK_CALL_BUTTON_VERSION', '1.2. 0');14 define('LV_QUICK_CALL_BUTTON_VERSION', '1.2.1'); 15 15 define('LV_QUICK_CALL_BUTTON_DIR', plugin_dir_path(__FILE__)); 16 16 define('LV_QUICK_CALL_BUTTON_URI', plugins_url('/', __FILE__)); … … 73 73 74 74 if (get_current_screen()->base == 'settings_page_lv_quick_call_button') { 75 wp_register_script( 'lv_js', plugins_url('assets/js/quick-call-button-admin.js', __FILE__), array('jquery'), '1.2. 0', true );75 wp_register_script( 'lv_js', plugins_url('assets/js/quick-call-button-admin.js', __FILE__), array('jquery'), '1.2.1', true ); 76 76 wp_enqueue_script( 'lv_js' ); 77 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button-admin.css', __FILE__) , false, '1.2. 0' );77 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button-admin.css', __FILE__) , false, '1.2.1' ); 78 78 wp_enqueue_style( 'lv_css'); 79 79 … … 253 253 254 254 // adding the enque here will setup the style. 255 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button.css', __FILE__) , false, '1.2. 0' );255 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button.css', __FILE__) , false, '1.2.1' ); 256 256 wp_enqueue_style( 'lv_css'); 257 wp_register_script( 'lv_js', plugins_url('/assets/js/drag-quick-call-button.js', __FILE__), array('jquery'), '1.2. 0', true );257 wp_register_script( 'lv_js', plugins_url('/assets/js/drag-quick-call-button.js', __FILE__), array('jquery'), '1.2.1', true ); 258 258 wp_enqueue_script( 'lv_js' ); 259 259 // code button … … 364 364 wp_enqueue_script( 'jquery'); 365 365 366 wp_register_script( 'jquery-ui', 'http ://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', false, null);366 wp_register_script( 'jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', false, null); 367 367 wp_enqueue_script( 'jquery-ui'); 368 368 -
quick-call-button/trunk/readme.txt
r2059249 r2059980 5 5 Requires at least: 4.6 6 6 Tested up to: 5.1 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0 … … 51 51 == Changelog == 52 52 53 = 1.2.1 = 54 * Update jquery 55 53 56 = 1.2.0 = 54 57 * March 29, 2019 … … 76 79 == Upgrade Notice == 77 80 81 = 1.2.1 = 82 78 83 = 1.2.0 = 79 84
Note: See TracChangeset
for help on using the changeset viewer.