Skip to content
Snippets Groups Projects
Commit 06f02cf3 authored by ArnaudCerisier's avatar ArnaudCerisier
Browse files

fix Duniter node

Join: remove focus (bug on Firefox) - fix issue #464
parent d436a1a2
No related branches found
No related tags found
No related merge requests found
...@@ -209,15 +209,15 @@ La configuration par défaut de notre environnement est visible dans le fichier ...@@ -209,15 +209,15 @@ La configuration par défaut de notre environnement est visible dans le fichier
"installDocUrl": "https://github.com/duniter/duniter/blob/master/doc/install-a-node.md" "installDocUrl": "https://github.com/duniter/duniter/blob/master/doc/install-a-node.md"
}, },
"node": { "node": {
"host": "cgeek.fr", "host": "g1.duniter.org",
"port": "9330" "port": "443"
}, },
"plugins":{ "plugins":{
"es": { "es": {
"enable": true, "enable": true,
"askEnable": false, "askEnable": false,
"host": "data.duniter.fr", "host": "g1.data.duniter.fr",
"port": "80" "port": "443"
} }
} }
}, },
......
...@@ -254,11 +254,12 @@ function JoinModalController($scope, $state, $interval, $timeout, $focus, UIUtil ...@@ -254,11 +254,12 @@ function JoinModalController($scope, $state, $interval, $timeout, $focus, UIUtil
// removeIf(device) // removeIf(device)
// Focus input text (only if NOT device, to avoid keyboard opening) // Focus input text (only if NOT device, to avoid keyboard opening)
if (behavior.focus) { // FIXME: this cause issue #464
/*if (behavior.focus) {
$timeout(function(){ $timeout(function(){
$focus(behavior.focus); $focus(behavior.focus);
}, 100); }, 100);
} }*/
// endRemoveIf(device) // endRemoveIf(device)
return behavior; return behavior;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment