Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

feat(script): Set ngModule to Closure namespace. #1709

Closed
wants to merge 1 commit into from

Commits on Feb 27, 2015

  1. feat(script): Set ngModule to Closure namespace.

    When using Closure, it is common to reference Angular module
    dependencies by the name property of the module.
    This looks like:
    ```
    goog.provide('bar.module');
    goog.require('foo.module');
    bar.module = angular.module('bar.module', [foo.module.name]);
    ```
    This change makes it possible for this kind of reference instead of
    having to refer to the dependent module as a string.
    wesalvaro committed Feb 27, 2015
    Configuration menu
    Copy the full SHA
    e6caf23 View commit details
    Browse the repository at this point in the history