Plugin Directory

Changeset 3265927


Ignore:
Timestamp:
04/02/2025 10:49:29 PM (11 months ago)
Author:
caseyak
Message:

Update files for 1.5

Location:
caseyak/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • caseyak/trunk/README.txt

    r3265865 r3265927  
    66Tested up to: 6.7.2
    77Requires PHP: 7.0
    8 Stable tag: 1.4
     8Stable tag: 1.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7777* Bug fixes & misc improvements
    7878
     79= 1.5 =
     80* Bug fixes & misc improvements
     81
    7982== Upgrade Notice ==
    8083
     
    9699= 1.4 =
    97100* Bug fixes & misc improvements
     101
     102= 1.5 =
     103* Bug fixes & misc improvements
  • caseyak/trunk/caseyak.php

    r3265865 r3265927  
    1717 * Plugin URI:        https://caseyak.com/wordpress
    1818 * Description:       The CaseYak AI Case Value Calculator.
    19  * Version:           1.4
     19 * Version:           1.5
    2020 * Author:            CaseYak
    2121 * Author URI:        https://caseyak.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'CASEYAK_VERSION', '1.4' );
     38define( 'CASEYAK_VERSION', '1.5' );
    3939
    4040/**
  • caseyak/trunk/public/css/caseyak-public.css

    r3262449 r3265927  
    44 */
    55#yakWidget-111 {
    6     position: fixed;
     6    position: sticky;
    77    bottom: 20px;
    88    z-index: 2147483647;
  • caseyak/trunk/public/js/mva.js

    r3265865 r3265927  
    14581458
    14591459    if (slidePosition == 'left') {
    1460       widget.setAttribute('style', 'transition: left 1s; left: -500px;');
     1460      widget.setAttribute('style', 'transition: margin-left 1s; margin-left: -500px;');
    14611461    } else {
    1462       widget.setAttribute('style', 'transition: right 1s; right: -500px;');
     1462      widget.setAttribute('style', 'transition: margin-right 1s; margin-right: -500px;');
    14631463    }
    14641464
     
    14681468    setTimeout(() => {
    14691469        if (slidePosition == 'left') {
    1470           widget.style.left = '10px';
     1470          widget.style.marginLeft = '10px';
    14711471        } else {
    1472           widget.style.right = '10px';
     1472          widget.style.marginRight = '10px';
    14731473        }
    14741474    }, "1000");
Note: See TracChangeset for help on using the changeset viewer.