Skip to content

Instantly share code, notes, and snippets.

@anaumov
Created October 15, 2015 10:52
Show Gist options
  • Save anaumov/ba1afec4234ca848ba43 to your computer and use it in GitHub Desktop.
Save anaumov/ba1afec4234ca848ba43 to your computer and use it in GitHub Desktop.
Инлайн редактирование
<div ng-repeat="tour in tours">
<h1 ng-show="tour.state=='view'">{{tour.title}}</h1>
<input ng-show="tour.state=='edit'" ng-model="title" />
<button ng-click="editTour(tour)" ng-show="tour.state=='view'">Редактировать</button>
<button ng-click="saveTour(tour)" ng-show="tour.state=='edit'">Сохранить</button>
<button ng-click="cancelEditing(tour)" ng-show="tour.state=='edit'">Отменить</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment