Skip to content

Narretz/angular-contenteditable

 
 

Repository files navigation

angular-contenteditable

Build Status Dependency Status Bitdeli Badge endorse

An AngularJS directive to bind html tags with the contenteditable attribute to models.

Install

bower install angular-contenteditable

Usage

angular.module('myapp', ['contenteditable'])
  .controller('Ctrl', ['$scope', function($scope) {
    $scope.model="<i>interesting</i> stuff"
  }])
<div ng-controller="Ctrl">
  <span contenteditable="true"
        ng-model="model"
        strip-br="true"
        select-non-editable="true">
  </span>
</div>

Notice

In Chrome, when a contenteditable element X contains a non-contenteditable element Y as the last element, then the behaviour of the caret is the following:

  • When X has style dislay set to block or inline-block, then the caret moves to the very far right edge of X when it is immediately at the end of X (inserting spaces moves the caret back).

  • When X has style display set to inline, then the caret disappears instead.

Development

npm install
bower install
grunt

About

angular model for the "contenteditable" attribute

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 61.9%
  • CoffeeScript 22.0%
  • Ruby 16.1%