@extends('layout.master') @section('title', 'Blog Post') @section('parentPageTitle', 'Blog') @section('content')
This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.

hi,

we are Summernote

@stop @section('page-script') jQuery(document).ready(function() { $('.summernote').summernote({ height: 350, // set editor height minHeight: null, // set minimum height of editor maxHeight: null, // set maximum height of editor focus: false, // set focus to editable area after initializing summernote popover: { image: [], link: [], air: [] } }); $('.inline-editor').summernote({ airMode: true }); }); window.edit = function() { $(".click2edit").summernote() }, window.save = function() { $(".click2edit").summernote('destroy'); } @stop