distmaker - Include `mixin/*` files
[civicrm-core.git] / js / crm-angularjs-loader.js
CommitLineData
9bd30577
CW
1// http://civicrm.org/licensing
2(function($, _) {
3 "use strict";
4
5 $(document).on('crmLoad', function(e) {
6 $('crm-angular-js', e.target).not('.ng-scope').each(function() {
7 angular.bootstrap(this, $(this).attr('modules').split());
8 });
9 });
10
11})(CRM.$, CRM._);