14 lines
374 B
JavaScript
Executable File
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);
|
|
};
|
|
}]); |