Plugin Directory

Changeset 1532922


Ignore:
Timestamp:
11/12/2016 02:14:12 PM (9 years ago)
Author:
v-media
Message:

Foodlist version 1.13

Location:
foodlist/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • foodlist/trunk/assets/js/admin.js

    r1277844 r1532922  
    235235            $('.fl-code').each(function(i, el) {
    236236                var editor = ace.edit(el);
     237                editor.getSession().setUseWorker(false);
     238                editor.$blockScrolling = Infinity;
    237239                if ($(el).data('mode') !== undefined) {
    238240                    editor.getSession().setMode("ace/mode/"+$(el).data('mode'));
  • foodlist/trunk/lib/Foodlist/Project/WordPress/Plugin/Foodlist/Controller/AdminController.php

    r938796 r1532922  
    109109                wp_enqueue_style('select2', $self->getManager()->getPluginUrl().'/assets/js/select2/select2.css', array(), '3.4.2');
    110110
    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
    112114                wp_enqueue_script('foodlist-admin', $self->getManager()->getPluginUrl().'/assets/js/admin.js', array('jquery', 'ace-editor'), false, true);
    113115               
  • foodlist/trunk/plugin.php

    r1414781 r1532922  
    66Author: Artprima
    77Author URI: http://artprima.eu/
    8 Version: 1.12
     8Version: 1.13
    99*/
    1010
    11 define('FOODLIST_VERSION', '1.12');
     11define('FOODLIST_VERSION', '1.13');
    1212define('FOODLIST_MIN_PHP_VERSION', '5.3.3');
    1313define('FOODLIST_MIN_WP_VERSION', '3.6.0');
  • foodlist/trunk/readme.txt

    r1414781 r1532922  
    33Tags: restaurant menu, café menu, restaurant, eatery, menus, bar, list
    44Requires at least: 4.0
    5 Tested up to: 4.5.2
     5Tested up to: 4.6.1
    66Stable tag: trunk
    77
     
    4646
    4747== 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.
    4852
    4953= Version 1.12 =
Note: See TracChangeset for help on using the changeset viewer.