SHARE
TWEET
Untitled
a guest
Jan 25th, 2016
43
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- #### View
- <h2>{{ NoteShowCtrl.note.title }}</h2>
- <div>
- <p>
- {{ NoteShowCtrl.note.learned.join(',')}}
- </p>
- <p>
- {{ NoteShowCtrl.note.fun.join(',')}}
- </p>
- <p>
- {{ NoteShowCtrl.note.todoList.join(',')}}
- </p>
- <p>
- {{ NoteShowCtrl.note.content }}
- </p>
- </div>
- <a ng-href="#/notes/{{NoteShowCtrl.note.id}}/edit"> Edit</a>
- <a href="" ng-click="NoteShowCtrl.deleteNote(NoteShowCtrl.note)"> Delete</a>
- #### Controller
- 'use strict';
- angular.module('DiaryApp').controller('NoteShowController', ['Note','$routeParams', '$location', function(Note, $routeParams, $location) {
- this.note = Note.get({id: $routeParams.id});
- this.deleteNote = function(note) {
- note.$remove().then(function() {
- $location.path('/notes');
- });
- };
- }]);
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
