UNPKG

angular-sweetalert-2

Version:

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

15 lines (11 loc) 264 B
'use strict'; angular.module('socialbase.sweetAlert', []) .factory('SweetAlert', ['$window', function SweetAlert($window) { var $swal = $window; return { swal: swal } function swal(config) { return $swal.swal(config); } }]);