This repository was archived by the owner on Feb 18, 2021. It is now read-only.
v1.1.0
change code syntax from:
// AMD Style
define(['angular'], function() {
return {
/* API for this module */
};
});
to:
// CommonJS Style
define(function(require) {
var angular = require('angular');
return {
/* API for this module */
};
});
docs/
- README - infos and instructions
toos/
- html2js grunt task config updated
- templates code syntax updated
src/
- code syntax updated for: