@abi-software/map-utilities 0.0.0-beta.4 → 0.0.0-beta.5
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.
package/package.json
CHANGED
|
@@ -171,7 +171,9 @@ export default {
|
|
|
171
171
|
return scaffoldEl;
|
|
172
172
|
},
|
|
173
173
|
getCurrentMultiflatmap: function () {
|
|
174
|
+
console.log("🚀 ~ this.multiflatmapRef:", this.multiflatmapRef);
|
|
174
175
|
const multiflatmapEl = this.multiflatmapRef?.$el || null;
|
|
176
|
+
console.log("🚀 ~ multiflatmapEl:", multiflatmapEl);
|
|
175
177
|
return multiflatmapEl;
|
|
176
178
|
},
|
|
177
179
|
getCurrentFlatmap: function () {
|
|
@@ -182,6 +184,7 @@ export default {
|
|
|
182
184
|
},
|
|
183
185
|
toggleHelpModeHighlight: function (option) {
|
|
184
186
|
const currentMultiflatmapEl = this.getCurrentMultiflatmap();
|
|
187
|
+
console.log("🚀 ~ currentMultiflatmapEl:", currentMultiflatmapEl);
|
|
185
188
|
const currentFlatmapEl = this.getCurrentFlatmap();
|
|
186
189
|
const currentScaffoldEl = this.getCurrentScaffold();
|
|
187
190
|
const allHighlightedItems =
|
|
@@ -189,9 +192,25 @@ export default {
|
|
|
189
192
|
|
|
190
193
|
if (currentMultiflatmapEl) {
|
|
191
194
|
if (option) {
|
|
195
|
+
console.log(
|
|
196
|
+
"🚀 ~ currentMultiflatmapEl.classList:",
|
|
197
|
+
currentMultiflatmapEl.classList
|
|
198
|
+
);
|
|
192
199
|
currentMultiflatmapEl.classList.add("in-help");
|
|
200
|
+
console.log(
|
|
201
|
+
"🚀 ~ currentMultiflatmapEl.classList:",
|
|
202
|
+
currentMultiflatmapEl.classList
|
|
203
|
+
);
|
|
193
204
|
} else {
|
|
205
|
+
console.log(
|
|
206
|
+
"🚀 ~ currentMultiflatmapEl.classList:",
|
|
207
|
+
currentMultiflatmapEl.classList
|
|
208
|
+
);
|
|
194
209
|
currentMultiflatmapEl.classList.remove("in-help");
|
|
210
|
+
console.log(
|
|
211
|
+
"🚀 ~ currentMultiflatmapEl.classList:",
|
|
212
|
+
currentMultiflatmapEl.classList
|
|
213
|
+
);
|
|
195
214
|
}
|
|
196
215
|
}
|
|
197
216
|
|