-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
- Loading branch information
1 parent
1ecf67c
commit 0ff788a
Showing
148 changed files
with
10,522 additions
and
16,182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
> 1% | ||
last 2 versions | ||
not ie <= 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
'extends': [ | ||
'plugin:vue/essential', | ||
'eslint:recommended' | ||
], | ||
rules: { | ||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/app' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<template> | ||
<div id="content" class="app-mail"> | ||
<div id="app-navigation" class="icon-loading"> | ||
<div id="mail-new-message-fixed" | ||
class="app-navigation-new"> | ||
</div> | ||
<ul id="usergrouplist"></ul> | ||
<div id="app-settings"> | ||
<div id="app-settings-header"> | ||
<button class="settings-button" | ||
data-apps-slide-toggle="#app-settings-content"><?php p($l-> | ||
t('Settings'));?> | ||
</button> | ||
</div> | ||
<div id="app-settings-content"></div> | ||
</div> | ||
</div> | ||
<div id="app-content"> | ||
<div id="app-content-wrapper"></div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {} | ||
</script> | ||
|
||
<style> | ||
</style> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.