diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ee588f..4518e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `inputStyle` and `nativeSpellcheck` options to manage the native language of the browser (Thanks to [@firm1], [#143]). - Group buttons in drop-down lists by adding a sub-option `children` for the items in the toolbar (Thanks to [@firm1], [#141]). - `sanitizerFunction` option to allow custom HTML sanitizing in the markdown preview (Thanks to [@adamb70], [#147]). +- Time formatting and custom text options for the autosave message (Thanks to [@dima-bzz], [#170]). ### Changed - Delay before assuming that submit of the form as failed is `autosave.submit_delay` instead of `autosave.delay` (Thanks to [@Situphen], [#139]). - Add `watch` task for gulp. @@ -148,6 +149,7 @@ Project forked from [SimpleMDE](https://github.com/sparksuite/simplemde-markdown [#9]: https://github.com/Ionaru/easy-markdown-editor/issues/9 +[#170]: https://github.com/Ionaru/easy-markdown-editor/pull/170 [#143]: https://github.com/Ionaru/easy-markdown-editor/pull/143 [#139]: https://github.com/Ionaru/easy-markdown-editor/pull/139 [#132]: https://github.com/Ionaru/easy-markdown-editor/pull/132 @@ -165,6 +167,7 @@ Project forked from [SimpleMDE](https://github.com/sparksuite/simplemde-markdown [#19]: https://github.com/Ionaru/easy-markdown-editor/pull/19 +[@dima-bzz]: https://github.com/dima-bzz [@firm1]: https://github.com/firm1 [@Situphen]: https://github.com/Situphen [@t49tran]: https://github.com/t49tran diff --git a/gulpfile.js b/gulpfile.js index 60acdab..efeb263 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -55,8 +55,8 @@ function styles() { // Watch for file changes function watch() { - gulp.watch('./src/js/**/*.js', scripts) - gulp.watch(css_files, styles) + gulp.watch('./src/js/**/*.js', scripts); + gulp.watch(css_files, styles); } var build = gulp.parallel(gulp.series(lint, scripts), styles);