summaryrefslogtreecommitdiff
path: root/public/js/lib/editor (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix insertOnStartOfLines behaviourDavid Mehren2021-05-051-4/+7
| | | | | | | | | | | | | A bug in insertOnStartOfLines lead to duplicated text, if the cursor was not at the start of a line. This fixes the behaviour of insertOnStartOfLines to always use the complete first and last line of the selection, even if they were only partially selected. Fixes #1231 Signed-off-by: David Mehren <git@herrmehren.de>
* Linter: Fix all lint errorsPhilip Molares2021-02-153-85/+86
| | | | Signed-off-by: Philip Molares <philip.molares@udo.edu>
* Remove pdf export codeTilman Vatteroth2020-11-261-2/+1
| | | | Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
* Add config option for cookie SameSite policyErik Michelson2020-08-271-8/+8
| | | | Signed-off-by: Erik Michelson <github@erik.michelson.eu>
* Set all cookies with sameSite: strictDavid Mehren2020-06-081-8/+16
| | | | | | Modern browsers do not support (or will stop supporting) sameSite: none (or no sameSite attribute) without the Secure flag. As we don't want everyone to be able to make requests with our cookies anyway, this commit sets sameSite to strict. See https://developer.mozilla.org/de/docs/Web/HTTP/Headers/Set-Cookie/SameSite Signed-off-by: David Mehren <dmehren1@gmail.com>
* Fix eslint warningsSheogorath2019-05-311-7/+7
| | | | | | | | | | | Since we are about to release it's time to finally fix our linting. This patch basically runs eslint --fix and does some further manual fixes. Also it sets up eslint to fail on every warning on order to make warnings visable in the CI process. There should no functional change be introduced. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* Fix toolbar day modePedro Ferreira2019-05-122-15/+17
| | | | | | Also moved the code to SCSS Signed-off-by: Pedro Ferreira <pedro@dete.st>
* Make upload button respect night modePedro Ferreira2019-05-122-4/+4
| | | | | | | Also set a title in the input field, so that the file name doesn't show up. Signed-off-by: Pedro Ferreira <pedro@dete.st>
* Move upload button into toolbarSheogorath2019-03-253-2/+13
| | | | | | | | | | | | | Currently we have the odd situation to have two toolbars. One inside the header and one in the editor. Since we only show the image upload button when the editor is visible we should move the upload button into the editor toolbar. This patch does this by adding the image upload button besides the image tag button. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* switching to eslint for code checkingClaudius Coenen2018-11-142-5/+5
| | | | | | | most rules degraded to WARN, so we don't go insane. This will change over time. The aim is to conform to a common style Signed-off-by: Claudius Coenen <opensource@amenthes.de>
* Fix some false titlesAlexander Wellbrock2018-07-081-2/+2
| | | Signed-off-by: Alexander Wellbrock <a.wellbrock@mailbox.org>
* Fix all newly introduced linting issuesSheogorath2018-06-231-10/+10
| | | | Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* Fix liniting and optimize some functionsSheogorath2018-06-232-43/+72
| | | | | | | | | First fixed some linting issues. Also optimized some functions to be undoable with one ctrl+z. This should also speedup some operations Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* Add a toolbar to Codemirror editorEdgar Zanella Alvarenga2018-06-193-0/+175
| | | | Signed-off-by: Edgar Zanella Alvarenga <e@vaz.io>
* Removing google drive integrationSheogorath2018-05-161-2/+0
| | | | | | | | | | | | | | | It's sad but it's not working. For multiple releases this should be already broken which shows how often it's used. As there is also a security issue related to that, it's better to remove the feature completely. Whoever wants to rewrite it, feel free to go. This commit removes the Google Drive integration from HackMD's Frontend editor and this way removes the need to provide any API key and Client ID in the frontend. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* Allow the usage of the esc-key by codemirrorSheogorath2018-02-241-3/+3
| | | | | | | | | | | | | This change allows all input modes of codemirror to use the information from an input esc-key and make this way vim and sublime more functional. To prevent this change from breaking the return from the fullscreen mode, it catches the esc-key in this case. Hopefully this is an acceptable solution. As before the vim-mode is handled different in fulltext-mode as it is esc-key heavy. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* :sparkles: Implemented dark theme.Edoardo Odorico2018-01-051-0/+1
| | | | Signed-off-by: Edoardo Odorico <edoubuntu@gmail.com>
* Corrected some grammatical issuesOliver Herrmann2017-10-301-3/+3
| | | Obviously caught up in a bad translation and didn't particularly make sense for native english speakers.
* Fix home and end keys behavior for windowsWu Cheng-Han2017-09-271-0/+2
|
* Manage syncscroll / currentMode in appStateYukai Huang2017-05-071-11/+0
|
* Extract modeTypeYukai Huang2017-05-071-0/+11
|
* Expose internal editor config variableYukai Huang2017-05-071-0/+1
|
* Load statusbar template by string-loaderYukai Huang2017-05-072-34/+61
|
* Move updateStatusBar method into editor classYukai Huang2017-03-282-0/+28
|
* Fix listener “this” contextYukai Huang2017-03-281-1/+1
|
* Promisify getStatusBarTemplate methodYukai Huang2017-03-281-26/+28
|
* Extract selection update from updateStatusbarYukai Huang2017-03-281-1/+2
|
* Impl multiple codemirror event listenerYukai Huang2017-03-281-0/+13
|
* Fix variable exporting errorYukai Huang2017-03-131-3/+1
|
* Use JavaScript standard styleYukai Huang2017-03-093-541/+568
|
* Extract editor related codeYukai Huang2017-03-082-0/+505
| | | | - in public/js/lib/editor/index.js
* Extract UI jquery nodeYukai Huang2017-03-071-0/+84