apollodec/Apollo/assets/js/controllers/toasterCtrl.js
saravanakumar_kandasami 7d72a0b91a updated code
2017-11-21 14:56:39 +05:30

14 lines
374 B
JavaScript

'use strict';
/**
* controller for AngularJS-Toaster
*/
app.controller('ToasterDemoCtrl', ['$scope', 'toaster', function ($scope, toaster) {
$scope.toaster = {
type: 'success',
title: 'Title',
text: 'Message'
};
$scope.pop = function () {
toaster.pop($scope.toaster.type, $scope.toaster.title, $scope.toaster.text);
};
}]);