2015-07-16 05:55:49 +08:00
|
|
|
|
|
|
|
|
2015-07-22 05:11:30 +08:00
|
|
|
|
|
|
|
<div class="page-style editor">
|
2015-07-16 05:55:49 +08:00
|
|
|
|
|
|
|
{{ csrf_field() }}
|
2015-07-24 04:55:46 +08:00
|
|
|
<div class="title-input page-title clearfix">
|
|
|
|
<div class="input">
|
2015-08-16 21:51:45 +08:00
|
|
|
@include('form/text', ['name' => 'name', 'placeholder' => 'Page Title'])
|
2015-07-22 05:11:30 +08:00
|
|
|
</div>
|
2015-07-13 04:31:15 +08:00
|
|
|
</div>
|
2015-07-16 05:55:49 +08:00
|
|
|
<div class="edit-area">
|
2015-08-22 22:06:03 +08:00
|
|
|
<textarea id="html" name="html" rows="5"
|
|
|
|
@if($errors->has('html')) class="neg" @endif>@if(isset($model) || old('html')){{htmlspecialchars( old('html') ? old('html') : $model->html)}}@endif</textarea>
|
|
|
|
@if($errors->has('html'))
|
|
|
|
<div class="text-neg text-small">{{ $errors->first('html') }}</div>
|
|
|
|
@endif
|
2015-07-13 04:31:15 +08:00
|
|
|
</div>
|
2015-07-24 04:55:46 +08:00
|
|
|
<div class="margin-top large">
|
2015-08-09 04:38:11 +08:00
|
|
|
<a onclick="window.history.back();" class="button muted">Cancel</a>
|
2015-07-24 04:55:46 +08:00
|
|
|
<button type="submit" class="button pos">Save Page</button>
|
|
|
|
</div>
|
2015-07-13 04:31:15 +08:00
|
|
|
</div>
|
|
|
|
|
2015-07-16 05:55:49 +08:00
|
|
|
|
|
|
|
|
2015-07-17 02:15:22 +08:00
|
|
|
|
2015-07-16 05:55:49 +08:00
|
|
|
|
|
|
|
<script>
|
|
|
|
$(function() {
|
|
|
|
//ImageManager.show('#image-manager');
|
|
|
|
|
|
|
|
tinymce.init({
|
|
|
|
selector: '.edit-area textarea',
|
2015-08-06 04:16:10 +08:00
|
|
|
content_css: [
|
|
|
|
'/css/app.css',
|
|
|
|
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300'
|
|
|
|
],
|
2015-07-24 04:55:46 +08:00
|
|
|
body_class: 'page-content',
|
2015-07-16 05:55:49 +08:00
|
|
|
relative_urls: false,
|
2015-07-22 05:11:30 +08:00
|
|
|
statusbar: false,
|
2015-07-29 03:57:13 +08:00
|
|
|
menubar: false,
|
|
|
|
height: 700,
|
2015-08-22 22:06:03 +08:00
|
|
|
extended_valid_elements: 'pre[*]',
|
|
|
|
plugins: "image table textcolor paste link imagetools fullscreen code",
|
|
|
|
toolbar: "code undo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table image link | fullscreen",
|
2015-07-24 04:55:46 +08:00
|
|
|
content_style: "body {padding-left: 15px !important; padding-right: 15px !important; margin:0!important; margin-left:auto!important;margin-right:auto!important;}",
|
2015-07-16 05:55:49 +08:00
|
|
|
file_browser_callback: function(field_name, url, type, win) {
|
2015-08-13 06:42:42 +08:00
|
|
|
ImageManager.show(function(image) {
|
2015-07-16 05:55:49 +08:00
|
|
|
win.document.getElementById(field_name).value = image.url;
|
|
|
|
if ("createEvent" in document) {
|
|
|
|
var evt = document.createEvent("HTMLEvents");
|
|
|
|
evt.initEvent("change", false, true);
|
|
|
|
win.document.getElementById(field_name).dispatchEvent(evt);
|
|
|
|
} else {
|
|
|
|
win.document.getElementById(field_name).fireEvent("onchange");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-07-29 03:57:13 +08:00
|
|
|
// setup: function(editor) {
|
|
|
|
// editor.addButton('full', {
|
|
|
|
// title: 'Expand Editor',
|
|
|
|
// icon: 'fullscreen',
|
|
|
|
// onclick: function() {
|
|
|
|
// var container = $(editor.getContainer()).toggleClass('fullscreen');
|
|
|
|
// var isFull = container.hasClass('fullscreen');
|
|
|
|
// var iframe = container.find('iframe').first();
|
|
|
|
// var height = isFull ? $(window).height()-110 : 600;
|
|
|
|
// iframe.css('height', height + 'px');
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// }
|
2015-07-16 05:55:49 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|