1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/components/stf/common-ui/enable-autofill/index.js
Gunther Brunner 91b1861d8d Fixed autofill for HTTPS.
Added dummy API endpoint for autofill POST requests.

Autofill also reads the CSRF token from cookies and doesn't require an 'about:blank' anymore on the forms.
2015-01-06 18:35:23 +09:00

6 lines
173 B
JavaScript

require('angular-cookies')
module.exports = angular.module('stf.enable-autofill', [
'ngCookies'
])
.directive('enableAutofill', require('./enable-autofill-directive'))