8000 a small tweak for demo page · maximkou/laravel-filemanager@a95d91d · GitHub
[go: up one dir, main page]

< 8000 div class="position-relative header-wrapper js-header-wrapper "> Skip to content

Commit a95d91d

Browse files
committed
a small tweak for demo page
1 parent 004ba2e commit a95d91d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

public/js/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ function use(item) {
515515
} else {
516516
// No editor found, open/download file using browser's default method
517517
window.open(url);
518+
// notify('window.opener not found');
518519
}
519520
}
520521
//end useFile

src/views/demo.blade.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
56
<title>Laravel Filemanager</title>
67
<link rel="shortcut icon" type="image/png" href="{{ asset('vendor/laravel-filemanager/img/72px color.png') }}">
78
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
@@ -12,21 +13,21 @@
1213
<h1 class="page-header">Integration Demo Page</h1>
1314
<div class="row">
1415
<div class="col-md-6">
15-
<h2>CKEditor</h2>
16+
<h2 class="mt-4">CKEditor</h2>
1617
<textarea name="ce" class="form-control"></textarea>
1718
</div>
1819
<div class="col-md-6">
19-
<h2>TinyMCE</h2>
20+
<h2 class="mt-4">TinyMCE</h2>
2021
<textarea name="tm" class="form-control"></textarea>
2122
</div>
2223
</div>
2324
<div class="row">
2425
<div class="col-md-6">
25-
<h2>Summernote</h2>
26+
<h2 class="mt-4">Summernote</h2>
2627
<textarea id="summernote-editor" name="content"></textarea>
2728
</div>
2829
<div class="col-md-6">
29-
<h2>Standalone Image Button</h2>
30+
<h2 class="mt-4">Standalone Image Button</h2>
3031
<div class="input-group">
3132
<span class="input-group-btn">
3233
<a id="lfm" data-input="thumbnail" data-preview="holder" class="btn btn-primary text-white">
@@ -36,7 +37,7 @@
3637
<input id="thumbnail" class="form-control" type="text" name="filepath">
3738
</div>
3839
<div id="holder" style="margin-top:15px;max-height:100px;"></div>
39-
<h2>Standalone File Button</h2>
40+
<h2 class="mt-4">Standalone File Button</h2>
4041
<div class="input-group">
4142
<span class="input-group-btn">
4243
<a id="lfm2" data-input="thumbnail2" data-preview="holder2" class="btn btn-primary text-white">
@@ -50,7 +51,7 @@
5051
</div>
5152
<div class="row">
5253
<div class="col-md-12">
53-
<h2>Embed file manager</h2>
54+
<h2 class="mt-4">Embed file manager</h2>
5455
<iframe src="/laravel-filemanager" style="width: 100%; height: 500px; overflow: hidden; border: none;"></iframe>
5556
</div>
5657
</div>

0 commit comments

Comments
 (0)
0