1234567 |
- <div ng-controller="Edit">
- <textarea placeholder="Comment text" class="form-control form-control-lg" ng-model="editCommetById.commentText"></textarea>
- <input type="text" class="form-control form-control-sm" placeholder="Author name" ng-model="editCommetById.authorName">
- <div class="btn-foto btn btn-secondary" ngf-select ng-model="newComment.foto" name="file" ngf-pattern="'.jpg, .png'" ngf-accept="'.jpg, .png'" ngf-max-size="20MB" ngf-min-height="100" ngf-resize="{width: 100, height: 100}">Select foto</div>
- <button type="submit" class="btn-form-comment btn btn-light" ng-click="cancelEdit()">Cancel</button>
- <button type="submit" style="margin-right: 10px" class="btn-form-comment btn btn-light" ng-click="saveEdit()">Save</button>
- </div>
|