angular-contenteditable icon indicating copy to clipboard operation
angular-contenteditable copied to clipboard

not working in ng-repeat

Open akashdeepshah opened this issue 9 years ago • 0 comments

I have used like the code below and it's not working.

 <div class="list card listinfo" ng-repeat="(key,dtls)  in ddetails.details">
  <h2 contenteditable="true" ng-model="dtls.title"></h2>
   <p contenteditable="true"  ng-model="dtls.subtitle"></p>
  </div>

I have also tried like this


   <div class="list card listinfo" ng-repeat="(key,dtls)  in ddetails.details">
      <h2 contenteditable="true" ng-model="ddetails.details[key].title"></h2>
       <p contenteditable="true"  ng-model="ddetails.details[key].subtitle"></p>
  </div>

akashdeepshah avatar Feb 23 '16 06:02 akashdeepshah