Files
BitwiseCmd/app/services.js
Borys Levytskyi e1963fb09c a lot of changes
2015-04-03 00:20:00 +03:00

9 lines
179 B
JavaScript

(function(app, HtmlBuilder){
app.service('html', {
builder: function () {
return new HtmlBuilder();
}
});
})(window.app, window.HtmlBuilder);