Changeset 1532922
- Timestamp:
- 11/12/2016 02:14:12 PM (9 years ago)
- Location:
- foodlist/trunk
- Files:
-
- 4 edited
-
assets/js/admin.js (modified) (1 diff)
-
lib/Foodlist/Project/WordPress/Plugin/Foodlist/Controller/AdminController.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
foodlist/trunk/assets/js/admin.js
r1277844 r1532922 235 235 $('.fl-code').each(function(i, el) { 236 236 var editor = ace.edit(el); 237 editor.getSession().setUseWorker(false); 238 editor.$blockScrolling = Infinity; 237 239 if ($(el).data('mode') !== undefined) { 238 240 editor.getSession().setMode("ace/mode/"+$(el).data('mode')); -
foodlist/trunk/lib/Foodlist/Project/WordPress/Plugin/Foodlist/Controller/AdminController.php
r938796 r1532922 109 109 wp_enqueue_style('select2', $self->getManager()->getPluginUrl().'/assets/js/select2/select2.css', array(), '3.4.2'); 110 110 111 wp_enqueue_script('ace-editor', 'http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js'); 111 //wp_enqueue_script('ace-editor', 'http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js'); 112 wp_enqueue_script('ace-editor', '//cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/ace.js'); 113 112 114 wp_enqueue_script('foodlist-admin', $self->getManager()->getPluginUrl().'/assets/js/admin.js', array('jquery', 'ace-editor'), false, true); 113 115 -
foodlist/trunk/plugin.php
r1414781 r1532922 6 6 Author: Artprima 7 7 Author URI: http://artprima.eu/ 8 Version: 1.1 28 Version: 1.13 9 9 */ 10 10 11 define('FOODLIST_VERSION', '1.1 2');11 define('FOODLIST_VERSION', '1.13'); 12 12 define('FOODLIST_MIN_PHP_VERSION', '5.3.3'); 13 13 define('FOODLIST_MIN_WP_VERSION', '3.6.0'); -
foodlist/trunk/readme.txt
r1414781 r1532922 3 3 Tags: restaurant menu, café menu, restaurant, eatery, menus, bar, list 4 4 Requires at least: 4.0 5 Tested up to: 4. 5.25 Tested up to: 4.6.1 6 6 Stable tag: trunk 7 7 … … 46 46 47 47 == ChangeLog == 48 49 = Version 1.13 = 50 * Fixed ACE editor cdn url. Old url stopped working and also broke some functionality of the plugin. 51 * Tested up to WordPress 4.6.1. 48 52 49 53 = Version 1.12 =
Note: See TracChangeset
for help on using the changeset viewer.