Plugin Directory

Changeset 3268779


Ignore:
Timestamp:
04/08/2025 12:28:20 PM (12 months ago)
Author:
planet9
Message:

Version 2.15.1 - fixed language selector dropdown issue when toolbar is draggable

Location:
planet-9
Files:
68 added
3 edited

Legend:

Unmodified
Added
Removed
  • planet-9/trunk/assets/js/scripts.js

    r3268542 r3268779  
    205205  panel.addEventListener('mousedown', (e) => {
    206206    if (e.button !== 0) return;
    207     if (e.target.tagName === 'BUTTON' || e.target.closest('button')) return;
     207
     208    // ⛔ Drag blokkeren als je klikt op interactieve elementen zoals <select>, <input>, <button>, enz.
     209    if (
     210      e.target.closest('button') ||
     211      e.target.closest('select') ||
     212      e.target.closest('input') ||
     213      e.target.closest('textarea') ||
     214      e.target.isContentEditable
     215    ) {
     216      return;
     217    }
    208218
    209219    e.preventDefault();
  • planet-9/trunk/planet-9.php

    r3268542 r3268779  
    44Plugin URI: https://planet9.be/
    55Description: Boost your content creation with a powerful AI-driven toolbar. Teller streamlines writing and editing, while Linus delivers seamless translations—both powered by cutting-edge artificial intelligence.
    6 Version: 2.15
     6Version: 2.15.1
    77Author: Planet ⑨
    88Author URI: https://planet9.be
  • planet-9/trunk/readme.txt

    r3268542 r3268779  
    55Requires at least: 5.0
    66Tested up to: 6.7
    7 Stable tag: 2.15
     7Stable tag: 2.15.1
    88Requires PHP: 7.4
    99License: GPLv3.0
     
    111111== Changelog ==
    112112
     113= 2.15.1 =
     114* Fixed: language selector dropdown was not working properly when toolbar was draggable
     115
    113116= 2.15 =
    114117* Toolbar is now draggable
Note: See TracChangeset for help on using the changeset viewer.