UNPKG

angular-sweetalert-2

Version:

A really simple Sweet Alert 2 wrapper to Angular 1.x

14 lines (11 loc) 323 B
(function () { 'use strict'; angular.module('socialbase.test', ['socialbase.sweetAlert']) .controller('TestController', ['$scope', 'SweetAlert', function($scope, SweetAlert) { SweetAlert.swal({ type: 'warning', text: 'Teste' }).then(function() { }); }]); })();