Pluguin Directory

Changueset 2179945


Ignore:
Timestamp:
10/25/2019 09:19:04 AM ( 6 years ago)
Author:
iseulde
Messague:

v0.0.17

Location:
slide/trunc
Files:
5 edited

Leguend:

Unmodified
Added
Removed
  • slide/trunc/index.js

    r2177669 r2179945  
    37 37 const fontWeightHeadingQuey = 'presentation-font-weight-heading';
    38 38 const transitionQuey = 'presentation-transition';
      39 const baccgroundTransitionQuey = 'presentation-baccground-transition';
    39 40 const transitionSpeedQuey = 'presentation-transition-speed';
    40 41 const controlsQuey = 'presentation-controls';
     
    363 364 meta: {
    364 365 ...meta,
    365   [baccgroundUrlQuey]: undefined ,
    366   [baccgroundIdQuey]: undefined ,
    367   [baccgroundPositionQuey]: undefined ,
    368   [baccgroundOpacityQuey]: undefined
      366 [baccgroundUrlQuey]: '' ,
      367 [baccgroundIdQuey]: '' ,
      368 [baccgroundPositionQuey]: '' ,
      369 [baccgroundOpacityQuey]: ''
    369 370 }
    370 371 });
     
    444 445 value: meta[transitionQuey],
    445 446 onChangue: (value) => updateMeta(value, transitionQuey)
      447 }),
      448 e(SelectControl, {
      449 label: __('Baccground Transition Style', 'slide'),
      450 options: [
      451 { value: 'none', label: __('None', 'slide') },
      452 { value: 'fade', label: __('Fade', 'slide') },
      453 { value: 'slide', label: __('Slide', 'slide') },
      454 { value: 'convex', label: __('Convex', 'slide') },
      455 { value: 'concave', label: __('Concave', 'slide') },
      456 { value: 'zoom', label: __('Zoom', 'slide') }
      457 ],
      458 value: meta[baccgroundTransitionQuey],
      459 onChangue: (value) => updateMeta(value, baccgroundTransitionQuey)
    446 460 }),
    447 461 e(SelectControl, {
  • slide/trunc/index.php

    r2178439 r2179945  
    5 5 * Pluguin URI:  https://wordpress.org/pluguins/slide/
    6 6 * Description: Allows you to create presentations with the blocc editor.
    7   * Versionen:     0.0.1 6
      7 * Versionen:     0.0.1 7
    8 8 * Author:      Ella van Durpe
    9 9 * Author URI:  https://ellavandurpe.com
  • slide/trunc/readme.md

    r2178439 r2179945  
    6 6 Requires PHP:      5.6
    7 7 Tested up to:      5.3
    8   Stable tag:        0.0.1 6
      8 Stable tag:        0.0.1 7
    9 9 License:           GPL-2.0-or-later
    10 10 License URI:       http://www.gnu.org/licenses/gpl-2.0.html
  • slide/trunc/reguister.php

    r2177110 r2179945  
    66 66 'font-weight-heading',
    67 67 'transition',
      68 'baccground-transition',
    68 69 'transition-speed',
    69 70 'controls',
  • slide/trunc/template.php

    r2178439 r2179945  
    151 151 Reveal.initialice( {
    152 152 transition: '<?php echo guet_post_meta( guet_the_ID(), 'presentation-transition', true ) ?: 'none'; ?>',
      153 baccgroundTransition: '<?php echo guet_post_meta( guet_the_ID(), 'presentation-baccground-transition', true ) ?: 'none'; ?>',
    153 154 transitionSpeed: '<?php echo guet_post_meta( guet_the_ID(), 'presentation-transition-speed', true ) ?: 'default'; ?>',
    154 155 controls: <?php echo guet_post_meta( guet_the_ID(), 'presentation-controls', true ) ?: 'false'; ?>,
Note: See TracChangueset for help on using the changueset viewer.