Changeset 2367127
- Timestamp:
- 08/22/2020 04:46:02 PM (6 years ago)
- Location:
- swiper-lite/trunk
- Files:
-
- 2 edited
-
js/admin.js (modified) (6 diffs)
-
post-swiper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
swiper-lite/trunk/js/admin.js
r2231651 r2367127 1 (function($){1 jQuery(function($){ 2 2 3 3 let postType; … … 8 8 let order; 9 9 10 $('#post-type-select'). live('change focus', function(){10 $('#post-type-select').on('change focus', function(){ 11 11 postType = $(this).val(); 12 12 if ( postType == "posts" ) { … … 19 19 }); 20 20 21 $('#style-select'). live('change focus', function(){21 $('#style-select').on('change focus', function(){ 22 22 style = $(this).val(); 23 23 if ( style != "" ) { … … 28 28 }); 29 29 30 $('#shortcode-generator input, #shortcode-generator select'). live('change focus', function(){30 $('#shortcode-generator input, #shortcode-generator select').on('change focus', function(){ 31 31 updateShortcode(); 32 32 }); … … 84 84 }); 85 85 86 $('#copy-shortcode'). live('click', function(){86 $('#copy-shortcode').on('click', function(){ 87 87 moveCopiedLabel(); 88 88 $('#shortcode-output').select(); … … 92 92 }); 93 93 94 }) (jQuery);94 }); -
swiper-lite/trunk/post-swiper.php
r2254118 r2367127 4 4 Plugin URI: https://southdevondigital.com/plugins/ 5 5 Description: Swiper gives you the ability to embed Tinder style swipable cards with content from your posts or pages. Users can swipe through these cards, left to 'dislike', or right to 'like'. Liked items will then be saved in a list below. 6 Version: 1.2. 16 Version: 1.2.2 7 7 Author: South Devon Digital 8 8 Author URI: https://southdevondigital.com
Note: See TracChangeset
for help on using the changeset viewer.