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.
This commit is contained in:
Gunther Brunner
2015-01-06 18:35:23 +09:00
parent 3e2628b235
commit 91b1861d8d
8 changed files with 46 additions and 14 deletions

View File

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