Plugin Directory

Changeset 1647737


Ignore:
Timestamp:
04/28/2017 10:20:41 PM (9 years ago)
Author:
kosinix
Message:

To trunk 3.1.1

Location:
cyclone-slider/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • cyclone-slider/trunk/README.txt

    r1646975 r1647737  
    4949* 6 resize options: Fit, Fill, Crop, Exact, Exact Width, Exact Height
    5050* Ability to change the image quality: Low, Medium, High, Very High, Max
    51 * And two additional templates: Text, Galleria, Yelp and Twitter
     51* And additional templates: Text, Galleria, Yelp and Twitter
    5252
    5353
     
    118118
    119119== Changelog ==
     120
     121= 3.1.1 - 2017-04-29 =
     122* Fix slide type image edit area not showing when adding slide for the first time.
    120123
    121124= 3.1.0 - 2017-04-28 =
  • cyclone-slider/trunk/cyclone-slider.php

    r1646975 r1647737  
    44Plugin URI: http://www.codefleet.net/cyclone-slider/
    55Description: Create and manage sliders with ease. Built for both casual users and developers.
    6 Version: 3.1.0
     6Version: 3.1.1
    77Author: Nico Amarilla
    88Author URI: http://www.codefleet.net/
  • cyclone-slider/trunk/js/admin.js

    r1646975 r1647737  
    412412            $table.find('tr').removeClass('active');
    413413            $tr.addClass('active');
    414             console.log($radio.attr('id'));
    415414        });
    416415        $(document).on('click', '#cs-boxy', function(e){
  • cyclone-slider/trunk/src/CycloneSlider/Admin.php

    r1646975 r1647737  
    531531            $vars['testimonial_img_url'] = '';
    532532            $vars['full_testimonial_img_url'] = '';
    533             $vars['slide']['type'] = 'image';
     533            $vars['type'] = 'image';
    534534
    535535            $empty_slide = $this->view->get_render('slide-edit.php', $vars);
  • cyclone-slider/trunk/views/slide-edit.php

    r1646975 r1647737  
    33    <div class="cs-header">
    44        <div class="cs-slide-type">
    5             <input type="hidden" name="cycloneslider_metas[<?php echo esc_attr($i); ?>][type]" value="<?php esc_attr($slide['type']); ?>">
     5            <input type="hidden" name="cycloneslider_metas[<?php echo esc_attr($i); ?>][type]" value="<?php echo esc_attr($slide['type']); ?>">
    66            <div class="switcher">
    77                <div class="display">
Note: See TracChangeset for help on using the changeset viewer.