Skip to content

Commit

Permalink
Fixed bug with formats key + assets updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Paweł Brzozowski committed Jul 21, 2019
1 parent d7306f1 commit 706fca2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Quill.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* See the documentation for more details.
*
* @author Paweł Bizley Brzozowski
* @version 2.3.0
* @version 2.3.1
* @license Apache 2.0
* https://github.com/bizley/yii2-quill
*
Expand Down Expand Up @@ -135,14 +135,14 @@ class Quill extends InputWidget
* Used when Formula module is added.
* @since 2.0
*/
public $katexVersion = '0.10.0';
public $katexVersion = '0.10.2';

/**
* @var string Highlight.js version to fetch from https://cdnjs.cloudflare.com
* Used when Syntax module is added.
* @since 2.0
*/
public $highlightVersion = '9.13.1';
public $highlightVersion = '9.15.8';

/**
* @var string Highlight.js stylesheet to fetch from https://cdnjs.cloudflare.com
Expand Down Expand Up @@ -255,7 +255,7 @@ protected function prepareOptions()
}

if (!empty($this->formats)) {
$this->_quillConfiguration['formates'] = $this->formats;
$this->_quillConfiguration['formats'] = $this->formats;
}

if (!empty($this->modules)) {
Expand Down

0 comments on commit 706fca2

Please sign in to comment.