apollo_developers/assets/js/controllers/toasterCtrl.js
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +05:30

14 lines
374 B
JavaScript
Executable File

'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);
};
}]);