blob: dbe41f4f4388f72a87450ff23d3db16fed2d0b1d [file] [log] [blame]
Matteo Scandolo86f3f282016-08-11 11:21:33 -07001(function () {
2 'use strict';
3 angular.module('xos.UITutorial')
4 .service('ErrorHandler', function(){
5 this.print = (msg, done) => {
6 const errorTpl = _.template(`<span class="error">[ERROR] <%= msg %></span>`);
7 done(errorTpl({msg: msg}));
8 };
9 });
10})();