rails_modal_manager 1.0.37 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e635b4d1de69eb311d4d9e6e4784019f6bd66318c0a2212dcd0b0e20c6f1f21
|
|
4
|
+
data.tar.gz: b96cb63a48fde00310a2754d4fdd0810ee8a5021deaf7aab05d593fea6413343
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fca82ee462c8aaedaebe54ccc4760a35efe957f04a98508dc100d618a08d9c0c7e0e9fa768ac0336d604110627dfd1554c3cc3bf2c414de71bb3b29c1a99823
|
|
7
|
+
data.tar.gz: d7b73a297f1c4461bdec59e3fa9cb007f9102a39ffc6dc4938e6d4722ee67be5fbe149d1d3fef6773d771cd7ab2c2ffb128f2b476ba832b32e4679fdd8ab2701
|
|
@@ -697,6 +697,9 @@ export default class extends Controller {
|
|
|
697
697
|
this.isResizing = true
|
|
698
698
|
this.resizeDirection = direction
|
|
699
699
|
|
|
700
|
+
// CSS 강제 위치 지정을 방지하기 위해 custom-position 클래스 추가
|
|
701
|
+
this.element.classList.add('rmm-custom-position')
|
|
702
|
+
|
|
700
703
|
const clientX = e.type.includes('touch') ? e.touches[0].clientX : e.clientX
|
|
701
704
|
const clientY = e.type.includes('touch') ? e.touches[0].clientY : e.clientY
|
|
702
705
|
|