AngularJS: API: ng/directive/ngCopy


ngCopy

  1. - directive in module ng

Specify custom behavior on copy event.

Directive Info

  • This directive executes at priority level 0.

Usage

  • as attribute:
    <window, input, select, textarea, a
      ng-copy="">
    ...
    </window, input, select, textarea, a>

Arguments

ParamTypeDetails
ngCopyexpression

Expression to evaluate upon copy. (Event object is available as $event)

Example

index.html
<input ng-copy="copied=true" ng-init="copied=false; value='copy me'" ng-model="value">
copied: {{copied}}