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

Several upgrades! :-) #56

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
806c7e0
Upgraded Packages and upgraded Webpack to v4
lspohn Sep 1, 2018
e6ae228
lint fixes
lspohn Sep 1, 2018
b88ad5b
Fixed Author/contributors
lspohn Sep 1, 2018
d0d4010
Delete devserver.js (moved to webpack.config.js)
lspohn Sep 1, 2018
4d63ea0
Disconnects Chat on window unload
lspohn Sep 1, 2018
b9a13bb
Disconnects Chat on window unload
lspohn Sep 1, 2018
ad964c3
Disconnects Chat on window unload
lspohn Sep 1, 2018
f676933
moved demo to gitignore and created template in docs
lspohn Sep 1, 2018
3505267
Updated demo file
lspohn Sep 1, 2018
7c3db49
Deleted disconnect on close (didnt work)
lspohn Sep 1, 2018
7a51d8a
Added German localization, is enabled browser-dependant. Default English
lspohn Sep 1, 2018
5e9a287
Added German localization, is enabled browser-dependant. Default English
lspohn Sep 2, 2018
7de76c2
Enable time-dependant activation of the widget,
lspohn Sep 2, 2018
bba251d
Enable time-dependant activation of the widget,
lspohn Sep 2, 2018
13ffb90
Added Random Names as users instead of random IDs => better recognition
lspohn Sep 2, 2018
b0ee67c
Rounded message boxes
lspohn Sep 2, 2018
f49e97d
used webpack copy plugin
lspohn Sep 2, 2018
b8685a1
Design update
lspohn Sep 3, 2018
449a753
Upgraded Packages
lspohn Sep 3, 2018
d47ffe5
Moved store to store2
lspohn Sep 3, 2018
cc6bbd6
Optimized Telegram message by using visitorName or userId, trim msg.
lspohn Sep 3, 2018
2c20af4
Reverted optimization of last commit due to requirements of different…
lspohn Sep 3, 2018
5a353c6
User name bold in chat.
lspohn Sep 3, 2018
76541a1
User name bold in chat.
lspohn Sep 3, 2018
bc7edf5
Updated eslint rules with standard + preact
lspohn Sep 3, 2018
fdd5208
Added option to control days of availability
lspohn Sep 3, 2018
4aa3db3
Updated German Strings
lspohn Sep 3, 2018
c28271b
Google font for Source Sans Pro added
lspohn Sep 3, 2018
c6126d1
Eslint fixes
lspohn Sep 3, 2018
703fb18
Webpack dev server config added
lspohn Sep 3, 2018
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
8 changes: 6 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"presets": ["es2015", "stage-0"],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
["transform-react-jsx", { "pragma": "h" }]
["@babel/plugin-transform-react-jsx", { "pragma": "h" }],
"@babel/plugin-proposal-class-properties"
]
}
10 changes: 7 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@
},
"env": {
"browser": true,
"node": true
"node": true,
"es6": true
},
"parser": "babel-eslint",
"extends": ["standard", "standard-preact"],
"rules": {
"quotes": [2, "single"],
"strict": [2, "never"]
"strict": [2, "never"],
"no-useless-escape": "warn",
"no-empty-pattern": "warn"

}
}
49 changes: 0 additions & 49 deletions demo.html

This file was deleted.

15 changes: 0 additions & 15 deletions devServer.js

This file was deleted.

9 changes: 9 additions & 0 deletions intergram.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
Loading