@trailstash/ultra 5.0.0 → 5.0.1
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/.gitlab-ci.yml +1 -0
- package/components/share-modal.js +0 -10
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
|
@@ -132,16 +132,6 @@ export class ShareModal extends HTMLElement {
|
|
|
132
132
|
opts.center = this.center;
|
|
133
133
|
opts.zoom = this.zoom;
|
|
134
134
|
}
|
|
135
|
-
let transform;
|
|
136
|
-
try {
|
|
137
|
-
({ transform } = parseSettings(this.query));
|
|
138
|
-
} catch {}
|
|
139
|
-
if (transform) {
|
|
140
|
-
this.refs.autoRunCheckBox.checked = false;
|
|
141
|
-
this.refs.autoRunCheckBox.disabled = true;
|
|
142
|
-
} else {
|
|
143
|
-
this.refs.autoRunCheckBox.disabled = false;
|
|
144
|
-
}
|
|
145
135
|
opts.autoRun = this.refs.autoRunCheckBox.checked;
|
|
146
136
|
this.refs.queryInput.value = toQueryParams(opts);
|
|
147
137
|
delete opts.autoRun;
|
package/package.json
CHANGED