@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | /** @var Doku_Form $form */ |
63 | - $form =& $event->data; |
|
63 | + $form = & $event->data; |
|
64 | 64 | $useWYSIWYG = get_doku_pref('plugin_prosemirror_useWYSIWYG', false); |
65 | 65 | |
66 | 66 | $prosemirrorJSON = ''; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $form->addElement($this->buildToggleButton()); |
87 | 87 | |
88 | 88 | // output data and editor field |
89 | - $form->addHidden('prosemirror_json',$prosemirrorJSON); |
|
89 | + $form->addHidden('prosemirror_json', $prosemirrorJSON); |
|
90 | 90 | $form->insertElement(1, '<div class="prosemirror_wrapper" id="prosemirror__editor"></div>'); |
91 | 91 | } |
92 | 92 | |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | 'id' => 'prosemirror-linkform', |
147 | 147 | 'style' => 'display: none;', |
148 | 148 | ]); |
149 | - $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset');; |
|
149 | + $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset'); ; |
|
150 | 150 | $iwOptions = array_keys(getInterwiki()); |
151 | 151 | $linkForm->addDropdown('iwshortcut', $iwOptions, 'InterWiki')->attr('required', 'required'); |
152 | 152 |