Compare commits

..

3 Commits

6 changed files with 8 additions and 8 deletions

View File

@ -46,7 +46,7 @@ export default class SettingsPane extends Component {
</option>
<option
value="false"
selected={{if (not this.settings.mapKinetic) "selected"}}
selected={{unless this.settings.mapKinetic "selected"}}
>
Off
</option>

View File

@ -1,6 +1,6 @@
{
"name": "marco",
"version": "1.11.3",
"version": "1.11.4",
"private": true,
"description": "Unhosted maps app",
"repository": {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -26,7 +26,7 @@
<meta name="msapplication-TileColor" content="#F6E9A6">
<meta name="msapplication-TileImage" content="/icons/icon-144.png">
<script type="module" crossorigin src="/assets/main-DD9l9xzQ.js"></script>
<script type="module" crossorigin src="/assets/main-ji2SNMnp.js"></script>
<link rel="stylesheet" crossorigin href="/assets/main-G8wPYi_P.css">
</head>
<body>

View File

@ -82,7 +82,7 @@ module('Acceptance | navigation', function (hooks) {
// Click the Close (X) button
await click('.close-btn');
await settled();
assert.strictEqual(currentURL(), '/', 'Returned to index');
assert.false(mapUi.returnToSearch, 'Flag is reset after closing sidebar');
@ -95,7 +95,7 @@ module('Acceptance | navigation', function (hooks) {
assert.ok(currentURL().includes('/place/'), 'Visited place directly');
await click('.back-btn');
await settled();
assert.strictEqual(currentURL(), '/', 'Returned to index/map');
assert.true(backStub.notCalled, 'window.history.back() was NOT called');