Files
angular.js/test/e2e/fixtures/back2dom/script.js
T
Jason Bedard 6e3bbfc744 fix(input): prevent browsers from autofilling hidden inputs
Autofilling with previous values (which will then be `$interpolate`ed) could lead to XSS or errors
2018-10-31 11:19:54 -07:00

12 lines
215 B
JavaScript

'use strict';
angular
.module('test', [])
.run(function($rootScope) {
$rootScope.internalFnCalled = false;
$rootScope.internalFn = function() {
$rootScope.internalFnCalled = true;
};
});