Sha256: d4ca01dae845888b88e07b100eefc35461c27ff484a3375b773dcb37c482717f

Contents?: true

Size: 1.29 KB

Versions: 205

Compression:

Stored size: 1.29 KB

Contents

<!DOCTYPE html>
<html lang="en" ng-app="summernoteDemo">
<head>
  <title>Angular-summernote Demo</title>

  <!--summernote dependencies-->
  <script src="components/jquery/dist/jquery.min.js"></script>
  <link rel="stylesheet" href="components/bootstrap/dist/css/bootstrap.min.css">
  <script src="components/bootstrap/dist/js/bootstrap.min.js"></script>
  <link rel="stylesheet" href="components/font-awesome/css/font-awesome.min.css">

  <!--summernote-->
  <link rel="stylesheet" href="components/summernote/dist/summernote.css" />
  <script src="components/summernote/dist/summernote.js"></script>
  <script src="components/summernote/lang/summernote-de-DE.js"></script>

  <style>
    body {
      margin: 10px 20px;
    }

    h2, h4, h5, h6 {
      background-color: #eee;
      padding: 10px;
    }

    h4 {
      margin-left: 20px;
    }

    .example {
      margin-left: 40px;
    }
  </style>
</head>
<body>
<div ng-controller="CodeCtrl">
  <h4>use ngModel to synchronize the value</h4>
  <div class="example">
    <div id="sn"></div>
  </div>
</div>


<script>
  $(document).ready(function() {
    $('#sn').summernote({
      callbacks: {
        onChange: function(contents, $editable) {
          console.log('onChange:', contents, $editable);
        }
      }
    });
  });
</script>
</body>
</html>

Version data entries

205 entries across 205 versions & 1 rubygems

Version Path
promethee-1.11.29 node_modules/angular-summernote/examples/index3.html
promethee-1.11.28 node_modules/angular-summernote/examples/index3.html
promethee-1.11.27 node_modules/angular-summernote/examples/index3.html
promethee-1.11.26 node_modules/angular-summernote/examples/index3.html
promethee-1.11.25 node_modules/angular-summernote/examples/index3.html
promethee-1.11.24 node_modules/angular-summernote/examples/index3.html
promethee-1.11.23 node_modules/angular-summernote/examples/index3.html
promethee-1.11.22 node_modules/angular-summernote/examples/index3.html
promethee-1.11.21 node_modules/angular-summernote/examples/index3.html
promethee-1.11.20 node_modules/angular-summernote/examples/index3.html
promethee-1.11.19 node_modules/angular-summernote/examples/index3.html
promethee-1.11.18 node_modules/angular-summernote/examples/index3.html
promethee-1.11.17 node_modules/angular-summernote/examples/index3.html
promethee-1.11.16 node_modules/angular-summernote/examples/index3.html
promethee-1.11.15 node_modules/angular-summernote/examples/index3.html
promethee-1.11.14 node_modules/angular-summernote/examples/index3.html
promethee-1.11.13 node_modules/angular-summernote/examples/index3.html
promethee-1.11.12 node_modules/angular-summernote/examples/index3.html
promethee-1.11.11 node_modules/angular-summernote/examples/index3.html
promethee-1.11.10 node_modules/angular-summernote/examples/index3.html