Compare commits

...

3 Commits

Author SHA1 Message Date
ducoterra
5efb93ea68 don't zoom on double tap 2020-04-25 15:03:03 -04:00
ducoterra
1ee6b890ef remove snippets urls for now 2020-04-25 12:58:31 -04:00
ducoterra
18aab648c6 you have got to be kidding me 2020-04-25 12:34:03 -04:00
5 changed files with 19 additions and 4 deletions

13
.vscode/launch.json vendored
View File

@@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"name": "Test",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
@@ -13,6 +13,17 @@
"test",
],
"django": true
},
{
"name": "Run Server",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver",
"--noreload"
],
"django": true
}
]
}

View File

@@ -18,7 +18,7 @@ from django.urls import path, include
from django.http import JsonResponse
urlpatterns = [
path('', include('api.urls')),
# path('api/', include('api.urls')),
path('', include('ui.urls')),
path('admin/', admin.site.urls),
]

View File

@@ -18,7 +18,7 @@ spec:
- configMapRef:
name: $DEPLOY
- secretRef:
name: $django-secrets
name: django-secrets
volumeMounts:
- mountPath: /app/db
name: $DEPLOY

View File

@@ -13,4 +13,8 @@ html, body {
flex-direction: column;
align-items: center;
text-align: center;
}
.disable-dbl-tap-zoom {
touch-action: manipulation;
}

View File

@@ -18,7 +18,7 @@
<h1 class="title">
The Button
</h1>
<button class="button is-primary" id="BUTTON">Press</button>
<button class="button is-primary disable-dbl-tap-zoom" id="BUTTON">Press</button>
</div>
<div><br></div>
<div>