Plugin Directory

Changeset 1397037


Ignore:
Timestamp:
04/16/2016 05:15:20 AM (10 years ago)
Author:
pdamsten
Message:

Handle touch and click in close buttons

Location:
fullscreen-galleria
Files:
4 deleted
3 edited
14 copied

Legend:

Unmodified
Added
Removed
  • fullscreen-galleria/tags/1.5.2/galleria-fs-theme.js

    r856087 r1397037  
    4343            map   = this.$('map'),
    4444            map_close = this.$('map-close'),
    45             touch = Galleria.TOUCH,
    46             click = touch ? 'touchstart' : 'click';
     45            touch = Galleria.TOUCH;
    4746
    4847        // show loader & counter with opacity
     
    7574
    7675        map.attr('id', 'galleria-map'); // openlayers needs id
    77         close.bind(click, function() {
     76        close.bind('click:fast', function() {
    7877            if ($('#galleria-map').is(":visible")) {
    7978              $('#galleria-map').toggle();
     
    8281            fsg_on_close();
    8382        });
    84         map_close.bind(click, function() {
     83        map_close.bind('click:fast', function() {
    8584            $('#galleria-map').toggle();
    8685        });
  • fullscreen-galleria/tags/1.5.2/galleria-fs.php

    r1353288 r1397037  
    55Plugin URI: http://torturedmind.org/
    66Description: Fullscreen gallery for Wordpress
    7 Version: 1.5.1
     7Version: 1.5.2
    88Author: Petri Damstén
    99Author URI: http://torturedmind.org/
     
    1212******************************************************************************/
    1313
    14 $fsg_ver = '1.5.1';
     14$fsg_ver = '1.5.2';
    1515$fsg_db_key = 'fsg_plugin_settings';
    1616
  • fullscreen-galleria/tags/1.5.2/readme.txt

    r1353288 r1397037  
    66Tags: galleria, gallery, photography, images
    77Requires at least: 4.0
    8 Tested up to: 4.4
     8Tested up to: 4.5
    99Stable tag: trunk
    1010License: MIT
     
    8787
    8888== Changelog ==
     89= 1.5.2 =
     90* Handle touch & click in close buttons
     91
    8992= 1.5.1 =
    9093* Don't modify RSS feeds but only content going to browsers
  • fullscreen-galleria/trunk/galleria-fs-theme.js

    r856087 r1397037  
    4343            map   = this.$('map'),
    4444            map_close = this.$('map-close'),
    45             touch = Galleria.TOUCH,
    46             click = touch ? 'touchstart' : 'click';
     45            touch = Galleria.TOUCH;
    4746
    4847        // show loader & counter with opacity
     
    7574
    7675        map.attr('id', 'galleria-map'); // openlayers needs id
    77         close.bind(click, function() {
     76        close.bind('click:fast', function() {
    7877            if ($('#galleria-map').is(":visible")) {
    7978              $('#galleria-map').toggle();
     
    8281            fsg_on_close();
    8382        });
    84         map_close.bind(click, function() {
     83        map_close.bind('click:fast', function() {
    8584            $('#galleria-map').toggle();
    8685        });
  • fullscreen-galleria/trunk/galleria-fs.php

    r1353288 r1397037  
    55Plugin URI: http://torturedmind.org/
    66Description: Fullscreen gallery for Wordpress
    7 Version: 1.5.1
     7Version: 1.5.2
    88Author: Petri Damstén
    99Author URI: http://torturedmind.org/
     
    1212******************************************************************************/
    1313
    14 $fsg_ver = '1.5.1';
     14$fsg_ver = '1.5.2';
    1515$fsg_db_key = 'fsg_plugin_settings';
    1616
  • fullscreen-galleria/trunk/readme.txt

    r1353288 r1397037  
    66Tags: galleria, gallery, photography, images
    77Requires at least: 4.0
    8 Tested up to: 4.4
     8Tested up to: 4.5
    99Stable tag: trunk
    1010License: MIT
     
    8787
    8888== Changelog ==
     89= 1.5.2 =
     90* Handle touch & click in close buttons
     91
    8992= 1.5.1 =
    9093* Don't modify RSS feeds but only content going to browsers
Note: See TracChangeset for help on using the changeset viewer.