Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.

v1.1.0

Compare
Choose a tag to compare
@erkobridee erkobridee released this 08 Oct 01:49
· 411 commits to master since this release

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 */
  };
});