よろしくお願いします。このタグマネージャーを Web アプリケーションで使用しています。jQuery関数はこれまで正常に動作します
<input type="text" name="tags" placeholder="Tags" class="tagsManager" />
下に置かれています
ng-repeat = "(key,val) in client_proj"
ここにコードの短いスニペットがあります
<div class="accordion-group" ng-repeat="(key,val) in client_proj"><!--For Every Project in Project List-->
<div class="accordion-heading" style="background-color:#EFF8FB">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#mainAccordion" href="#{{val.id}}" ng-click="disableEditor()">
<div align="center">{{val.title}}</div>
</a>
</div>
<div id="{{val.id}}" class="accordion-body collapse">
<div class="accordion-inner" style="font-size:12px; background-color:white">
<strong>Technologies Exposure:</strong><br/>
<div ng-hide="editorEnabled">{{val.exposure}}</div>
<div ng-show="editorEnabled">
<textarea ng-show="editorEnabled" class="span12" ng-model="val.exposure" rows="12" style="resize:vertical"></textarea>
<input type="text" name="tags" placeholder="Tags" class="tagsManager" />
押した後に新しいタグを作成するなどの機能を実行せずに、通常の入力として表示されます。
誰が何が起こっているのか教えてもらえますか?