mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a5fa745749
- Moved Code-editor from vue to component. - Updated popup code so it background click only hides if the click originated on the same background. Clicks within the popup will no longer cause it to hide. - Added session-level history tracking to code editor.
14 lines
746 B
PHP
14 lines
746 B
PHP
<div id="entity-selector-wrap">
|
|
<div components="popup entity-selector-popup" class="popup-background">
|
|
<div class="popup-body small" tabindex="-1">
|
|
<div class="popup-header primary-background">
|
|
<div class="popup-title">{{ trans('entities.entity_select') }}</div>
|
|
<button refs="popup@hide" type="button" class="popup-header-close">x</button>
|
|
</div>
|
|
@include('components.entity-selector', ['name' => 'entity-selector'])
|
|
<div class="popup-footer">
|
|
<button refs="entity-selector-popup@select" type="button" disabled="true" class="button corner-button">{{ trans('common.select') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |