Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. app.controller('AppCtrl', function($scope, $mdToast, $animate) {
  2. $scope.toastPosition = {
  3. bottom: false,
  4. top: true,
  5. left: false,
  6. right: true
  7. };
  8. $scope.showWatchlistToast = function() {
  9. $mdToast.show({
  10. controller: 'ToastCtrl',
  11. templateUrl: 'toast-template.html',
  12. hideDelay: 6000,
  13. position: 'top left'
  14. });
  15. };
  16. $scope.items= [{
  17. name: 'some name',
  18. };
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement