-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 815ee4c
Showing
323 changed files
with
57,154 additions
and
0 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,11 @@ | ||
<?php | ||
|
||
namespace Sledov\Quill; | ||
|
||
use Illuminate\Contracts\Events\Dispatcher; | ||
|
||
return function (Dispatcher $events) { | ||
$events->subscribe(Listener\AddClientAssets::class); | ||
$events->subscribe(Listener\FormatHtml::class); | ||
}; | ||
|
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,31 @@ | ||
{ | ||
"name": "sledov/flarum-ext-quill", | ||
"keywords": ["flarum","wysiwyg","quill"], | ||
"version": "0.1.0", | ||
"description": "Quill WYSIWYG editor for Flarum", | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Egor Sledov", | ||
"email": "egor@sledov.com" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^0.1.0-beta.7" | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "Quill Editor", | ||
"icon": { | ||
"image": "icon.svg", | ||
"backgroundColor": "#1d92c9" | ||
} | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Sledov\\Quill\\": "src/" | ||
} | ||
} | ||
} |
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,12 @@ | ||
var flarum = require('flarum-gulp'); | ||
|
||
flarum({ | ||
files: [ | ||
'library/quill.js' | ||
], | ||
modules: { | ||
'sledov/quill': [ | ||
'src/**/*.js' | ||
] | ||
} | ||
}); |
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,6 @@ | ||
{ | ||
"name": "flarum-tags-admin", | ||
"devDependencies": { | ||
"quill": "1.3.0" | ||
} | ||
} |
Oops, something went wrong.