mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8296782149
The notification system was also updated so it can be used from JavaScript events such as image manager uploads. Closes #25
9 lines
382 B
PHP
9 lines
382 B
PHP
|
|
<div class="notification anim pos" @if(!Session::has('success')) style="display:none;" @endif>
|
|
<i class="zmdi zmdi-check-circle"></i> <span>{{ Session::get('success') }}</span>
|
|
</div>
|
|
|
|
<div class="notification anim neg stopped" @if(!Session::has('error')) style="display:none;" @endif>
|
|
<i class="zmdi zmdi-alert-circle"></i> <span>{{ Session::get('error') }}</span>
|
|
</div>
|