settings.js
15 lines
| 1 | /** |
| 2 | * @package EmbedPress |
| 3 | * @author PressShack <help@pressshack.com> |
| 4 | * @copyright Copyright (C) 2017 Open Source Training, LLC. All rights reserved. |
| 5 | * @license GPLv2 or later |
| 6 | * @since 1.7.0 |
| 7 | */ |
| 8 | (function($) { |
| 9 | "use strict"; |
| 10 | |
| 11 | $(function() { |
| 12 | $('.color-field').wpColorPicker(); |
| 13 | }); |
| 14 | })(jQuery); |
| 15 |