diff options
| author | Andreas Marek | 2013-07-24 21:20:39 +0200 |
|---|---|---|
| committer | Jeff Cross | 2013-07-31 15:50:12 -0700 |
| commit | 3fdbe81a337c39027929c415e719493755cd8583 (patch) | |
| tree | c2d81d085d6464f0a745f1305614cbf4ac7328a2 /src/ngScenario/Scenario.js | |
| parent | ca3e0c8ce5e1d6fa18346800023d3864c1d83a81 (diff) | |
| download | angular.js-3fdbe81a337c39027929c415e719493755cd8583.tar.bz2 | |
feat(scenario): expose jQuery for usage outside of angular scenario
The global jQuery reference is removed by angular scenario and only a local scoped reference is kept. To make jQuery available for other code, a new reference angular.scenario.jQuery is added.
Diffstat (limited to 'src/ngScenario/Scenario.js')
| -rw-r--r-- | src/ngScenario/Scenario.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ngScenario/Scenario.js b/src/ngScenario/Scenario.js index 4d848f2c..ff5f3470 100644 --- a/src/ngScenario/Scenario.js +++ b/src/ngScenario/Scenario.js @@ -10,6 +10,11 @@ angular.scenario = angular.scenario || {}; /** + * Expose jQuery (e.g. for custom dsl extensions). + */ +angular.scenario.jQuery = _jQuery; + +/** * Defines a new output format. * * @param {string} name the name of the new output format |
