Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3 #96

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open

V3 #96

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
52451f1
rebase
JonathanTreffler Sep 20, 2020
7c3a03a
scrolling works again, with much less DOM operations
JonathanTreffler Sep 20, 2020
473f92a
continued developemnt
JonathanTreffler Sep 20, 2020
d849e61
Added vetur to the gitpod configuration
JonathanTreffler Feb 12, 2021
39eb5db
continued development
JonathanTreffler Feb 12, 2021
8bdd009
modified nuxt.config.js
JonathanTreffler Feb 12, 2021
20713bb
continued development
JonathanTreffler Feb 12, 2021
f7ea93d
modified development start script
JonathanTreffler Feb 12, 2021
be1e266
Moved zoom Animations into own files
JonathanTreffler Feb 12, 2021
153b9c0
fixed linting errors
JonathanTreffler Feb 12, 2021
9733bd5
started developing the portal feature
JonathanTreffler Feb 14, 2021
b066170
Added a custom Dockerfile for Gitpod containers, to hopefully fix the…
JonathanTreffler Feb 14, 2021
0658764
Update .gitpod.yml
JonathanTreffler Feb 14, 2021
2f56823
Update .gitpod.Dockerfile
JonathanTreffler Feb 14, 2021
9e703d6
hopefully finally fixed the sharp/vips8 build problem
JonathanTreffler Feb 14, 2021
3a8c6bf
fixed typo
JonathanTreffler Feb 14, 2021
e67837b
fixed references to the background div, wich i should already have ch…
JonathanTreffler Feb 15, 2021
c19f165
fixed zIndex Problem with zoom image background
JonathanTreffler Feb 15, 2021
ef97e7f
fixed linting errors
JonathanTreffler Feb 15, 2021
5bdde8b
Merge pull request #102 from JonathanTreffler/portal
JonathanTreffler Feb 15, 2021
533f223
deleted GalleryImage.vue
JonathanTreffler Feb 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vscode:
extensions:
- [email protected]:03mwRhlVpWDul4qBChcVUA==
29 changes: 12 additions & 17 deletions demo/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'@nuxtjs',
'plugin:nuxt/recommended'
],
plugins: [
],
// add your custom rules here
rules: {}
}
root: true,
env: {
browser: true,
node: true,
},
parserOptions: {
parser: "babel-eslint",
},
extends: [
"jonathantreffler",
],
};
6 changes: 3 additions & 3 deletions demo/layouts/default.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<Nuxt />
</div>
<div>
<Nuxt />
</div>
</template>
<style>
html {
Expand Down
100 changes: 35 additions & 65 deletions demo/nuxt.config.js
Original file line number Diff line number Diff line change
@@ -1,67 +1,37 @@

export default {
/*
** Nuxt rendering mode
** See https://nuxtjs.org/api/configuration-mode
*/
mode: 'universal',
/*
** Nuxt target
** See https://nuxtjs.org/api/configuration-target
*/
target: 'static',
/*
** Headers of the page
** See https://nuxtjs.org/api/configuration-head
*/
head: {
title: process.env.npm_package_name || '',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: process.env.npm_package_description || '' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
** https://nuxtjs.org/guide/plugins
*/
plugins: [
],
/*
** Auto import components
** See https://nuxtjs.org/api/configuration-components
*/
components: true,
/*
** Nuxt.js dev-modules
*/
buildModules: [
'@nuxtjs/eslint-module',
'@nuxtjs/stylelint-module',
'@aceforth/nuxt-optimized-images'
],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/pwa'
],
/*
** Build configuration
** See https://nuxtjs.org/api/configuration-build/
*/
build: {
},
router: {
base: '/nuxt-gallery/'
}
}
mode: "universal",
target: "static",
head: {
title: process.env.npm_package_name || "",
meta: [
{ charset: "utf-8", },
{ name: "viewport", content: "width=device-width, initial-scale=1", },
{ hid: "description", name: "description", content: process.env.npm_package_description || "", },
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico", },
],
},
css: [
],
plugins: [
],
components: true,
buildModules: [
"@nuxtjs/eslint-module",
"@nuxtjs/stylelint-module",
"@aceforth/nuxt-optimized-images",
],
modules: [
"@nuxtjs/pwa",
],
build: {
},
router: {
base: "/nuxt-gallery/",
},
optimizedImages: {
optimizeImagesInDev: true,
},
};
Loading