@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /** @var Doku_Form $form */ |
| 47 | - $form =& $event->data; |
|
| 47 | + $form = & $event->data; |
|
| 48 | 48 | $useWYSIWYG = get_doku_pref('plugin_prosemirror_useWYSIWYG', false); |
| 49 | 49 | |
| 50 | 50 | $prosemirrorJSON = ''; |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $form->addElement(form_makeButton('button', '', $this->getLang('switch_editors'), $attr)); |
| 74 | 74 | |
| 75 | 75 | // output data and editor field |
| 76 | - $form->addHidden('prosemirror_json',$prosemirrorJSON); |
|
| 76 | + $form->addHidden('prosemirror_json', $prosemirrorJSON); |
|
| 77 | 77 | $form->insertElement(1, '<div class="prosemirror_wrapper" id="prosemirror__editor"></div>'); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | 'id' => 'prosemirror-linkform', |
| 106 | 106 | 'style' => 'display: none;', |
| 107 | 107 | ]); |
| 108 | - $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset');; |
|
| 108 | + $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset'); ; |
|
| 109 | 109 | $iwOptions = array_keys(getInterwiki()); |
| 110 | 110 | $linkForm->addDropdown('iwshortcut', $iwOptions, 'InterWiki')->attr('required', 'required'); |
| 111 | 111 | |