|
3 | 3 | // @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o! |
4 | 4 | // @author KudoAI |
5 | 5 | // @namespace https://kudoai.com |
6 | | -// @version 2025.10.15 |
| 6 | +// @version 2025.10.15.1 |
7 | 7 | // @license MIT |
8 | 8 | // @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c |
9 | 9 | // @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c |
|
1364 | 1364 | modals.draggingModal = event.currentTarget |
1365 | 1365 | event.preventDefault() // prevent sub-elems like icons being draggable |
1366 | 1366 | Object.assign(modals.draggingModal.style, { // update styles |
1367 | | - transform: 'scale(1.05)', willChange: 'transform', |
| 1367 | + transform: 'scale(1.05)', |
1368 | 1368 | transition: '0.1s', '-webkit-transition': '0.1s', '-moz-transition': '0.1s', |
1369 | 1369 | '-o-transition': '0.1s', '-ms-transition': '0.1s' |
1370 | 1370 | }) |
|
1388 | 1388 |
|
1389 | 1389 | mouseup() { // restore styles/pointer events, remove listeners, reset modals.draggingModal |
1390 | 1390 | Object.assign(modals.draggingModal.style, { // restore styles |
1391 | | - cursor: 'inherit', transform: 'scale(1)', willChange: 'auto', |
| 1391 | + cursor: 'inherit', transform: 'scale(1)', |
1392 | 1392 | transition: 'inherit', '-webkit-transition': 'inherit', '-moz-transition': 'inherit', |
1393 | 1393 | '-o-transition': 'inherit', '-ms-transition': 'inherit' |
1394 | 1394 | }) |
|
0 commit comments