blob: dbe41f4f4388f72a87450ff23d3db16fed2d0b1d [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.UITutorial')
.service('ErrorHandler', function(){
this.print = (msg, done) => {
const errorTpl = _.template(`<span class="error">[ERROR] <%= msg %></span>`);
done(errorTpl({msg: msg}));
};
});
})();