mirror of
https://github.com/moparisthebest/mail
synced 2024-11-11 03:35:01 -05:00
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
'use strict';
|
|
|
|
var ngModule = angular.module('woUtil');
|
|
ngModule.service('dialog', Dialog);
|
|
|
|
function Dialog() {}
|
|
|
|
Dialog.prototype.error = function() {};
|
|
|
|
Dialog.prototype.info = function() {};
|
|
|
|
Dialog.prototype.confirm = function() {}; |