Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6c62458
Init ES6 modules and jQuery-free code
onli Sep 12, 2023
87eeabd
Fix share action when clicking on button
onli Sep 12, 2023
9f96777
Enable twitter share, fix click target detection
onli Sep 12, 2023
8986fae
Enable remaining modules as ES6 modules
onli Sep 12, 2023
a693dd1
Remove outdated shariff files
onli Sep 12, 2023
e0e76ad
minor: remove leftover TODO
onli Sep 12, 2023
a039d38
Restore facebooklike
onli Sep 20, 2023
5e697f9
Merge branch 'develop' into onli-develop
richard67 Oct 19, 2023
6f14cc9
Fix conflict resolution from branch update
richard67 Oct 19, 2023
af564cb
CS
richard67 Oct 19, 2023
0d1fca7
Merge branch 'develop' into onli-develop
richard67 Apr 18, 2025
1e61542
Migrate also clipboard.js and fediverse.js
richard67 Apr 19, 2025
a0b6864
Fix twitter button, classlist caused error
onli Apr 22, 2025
b9ac121
Fix mail button and buttons without popup because of null error
onli Apr 22, 2025
ab88900
Set package.json to a minimal config that restores build command
onli Apr 22, 2025
36dfcc7
Restore dev mode command
onli Apr 22, 2025
7ccb743
Fix error when backend was given as relative url
onli Apr 22, 2025
748847b
fix facebooklike when options given as data attribute
onli Apr 22, 2025
21c62e3
Fix counter update code
onli Apr 22, 2025
645b405
Remove leftover config files of currently not active dependencies
onli Apr 22, 2025
bbaa59b
Restore tests
onli Apr 23, 2025
cf649a6
Make Shariff a proper EM6 module, so it can be used as such
onli Apr 23, 2025
4158411
minor: correct comment
onli Apr 23, 2025
0993721
Add back app.less and app.css to demo
richard67 May 4, 2025
38ebeb7
Change back demo to use shariff.complete.js
richard67 May 4, 2025
93556d7
Use common build for dist and demo
richard67 May 4, 2025
285fea3
Add build scripts compile_less and compile_js
richard67 May 4, 2025
2215223
Add back shariff.min.css
richard67 May 4, 2025
87c4fe0
Add back compilation of facebooklike_dlg.less
richard67 May 4, 2025
6a04f12
Copy fonts to dist and demo, adjust fa-font-path
richard67 May 4, 2025
c5ca7c1
Remove obsolete symbolic links
richard67 May 4, 2025
69b2c85
Update package version
richard67 May 4, 2025
45f9dc7
Apply suggestions from code review
richard67 Dec 29, 2025
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: 0 additions & 3 deletions .babelrc

This file was deleted.

11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,14 @@ typings/
# macOS stuff
.DS_Store

# demo files
demo/*.ttf
demo/*.woff2
demo/app.css
demo/facebooklike_dlg.css
demo/shariff.complete.css
demo/shariff.complete.js
demo/shariff.min.css

# test files
test/shariff.complete.js
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

1 change: 0 additions & 1 deletion demo/app.js

This file was deleted.

1 change: 0 additions & 1 deletion demo/fonts

This file was deleted.

2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link href="http://www.heise.de/" rel="canonical">
<meta property="DC.title" content="Shariff-Plus demo page">
<meta name="DC.creator" content="Richard Fath">
<script async src="shariff.complete.js"></script>
<script async src="shariff.complete.js" type="module"></script>
</head>
<body>
<dl class="layout-hint">
Expand Down
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// eslint.config.js
import { defineConfig } from "eslint/config";

export default defineConfig([
{
rules: {
'comma-dangle': [1, 'only-multiline'],
'indent': ['error', 2, {MemberExpression: 1 }],
'space-before-function-paren': 0
},
},
]);
Loading