Changeset 1714484
- Timestamp:
- 08/17/2017 06:58:39 AM (9 years ago)
- Location:
- acf-theme-code/trunk
- Files:
-
- 1 added
- 1 deleted
- 3 edited
-
acf_theme_code.php (modified) (2 diffs)
-
assets/clipboard.js (deleted)
-
assets/clipboard.min.js (added)
-
core/core.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acf-theme-code/trunk/acf_theme_code.php
r1658038 r1714484 4 4 Plugin URI: http://www.hookturn.io 5 5 Description: Generates theme code for ACF field groups to speed up development. 6 Version: 1.3. 16 Version: 1.3.2 7 7 Author: Aaron Rutley, Ben Pearson 8 8 Author URI: http://www.hookturn.io … … 15 15 16 16 // Define the version number 17 define( 'ACFTC_VERSION', '1.3. 1' );17 define( 'ACFTC_VERSION', '1.3.2' ); 18 18 19 19 // Check for dashboard or admin panel -
acf-theme-code/trunk/core/core.php
r1658038 r1714484 257 257 258 258 // Clipboard 259 wp_enqueue_script( 'acftc_clipboard_js', self::$plugin_url . 'assets/clipboard. js', '' , self::$plugin_version);259 wp_enqueue_script( 'acftc_clipboard_js', self::$plugin_url . 'assets/clipboard.min.js', '' , self::$plugin_version); 260 260 261 261 // Plugin js 262 wp_enqueue_script( 'acftc_js', self::$plugin_url . 'assets/acf-theme-code.js', array( 'acftc_clipboard_js' ), self::$plugin_version );262 wp_enqueue_script( 'acftc_js', self::$plugin_url . 'assets/acf-theme-code.js', array( 'acftc_clipboard_js' ), self::$plugin_version, 'true' ); 263 263 264 264 } -
acf-theme-code/trunk/readme.txt
r1707366 r1714484 4 4 Requires at least: 4.8 5 5 Tested up to: 4.8.1 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 License: GPL2+ 8 8 … … 89 89 == Changelog == 90 90 91 = 1.3.2 = 92 * Fix: Updated clipboard.js & bug fix for the copy to clipboard feature 93 91 94 = 1.3.1 = 92 95 * Fix: Updates to array count functionality for PHP 5.4
Note: See TracChangeset
for help on using the changeset viewer.