toaster.js 312 B

12345678910
  1. app.controller('ToasterDemoCtrl', ['$scope', 'toaster', function($scope, toaster) {
  2. $scope.toaster = {
  3. type: 'success',
  4. title: 'Title',
  5. text: 'Message'
  6. };
  7. $scope.pop = function(){
  8. toaster.pop($scope.toaster.type, $scope.toaster.title, $scope.toaster.text);
  9. };
  10. }]);