6e3bbfc744
Autofilling with previous values (which will then be `$interpolate`ed) could lead to XSS or errors
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
'use strict';
|
|
|
|
angular
|
|
.module('test', [])
|
|
.run(function($rootScope) {
|
|
$rootScope.internalFnCalled = false;
|
|
|
|
$rootScope.internalFn = function() {
|
|
$rootScope.internalFnCalled = true;
|
|
};
|
|
});
|