diff --git a/doc/fr/development_tutorial-01.md b/doc/fr/development_tutorial-01.md index 8535b620f3d5398fde4cfa07cfc9168501b56975..a59badc1ebad445bf53bccafa3ef3a664a25aeae 100644 --- a/doc/fr/development_tutorial-01.md +++ b/doc/fr/development_tutorial-01.md @@ -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" }, "node": { - "host": "cgeek.fr", - "port": "9330" + "host": "g1.duniter.org", + "port": "443" }, "plugins":{ "es": { "enable": true, "askEnable": false, - "host": "data.duniter.fr", - "port": "80" + "host": "g1.data.duniter.fr", + "port": "443" } } }, diff --git a/www/js/controllers/join-controllers.js b/www/js/controllers/join-controllers.js index cc099bfe274962eabd66e3701943b173f2cef4ed..71476558b6542eaaf767826fc6ed1fc801925f61 100644 --- a/www/js/controllers/join-controllers.js +++ b/www/js/controllers/join-controllers.js @@ -254,11 +254,12 @@ function JoinModalController($scope, $state, $interval, $timeout, $focus, UIUtil // removeIf(device) // Focus input text (only if NOT device, to avoid keyboard opening) - if (behavior.focus) { + // FIXME: this cause issue #464 + /*if (behavior.focus) { $timeout(function(){ $focus(behavior.focus); }, 100); - } + }*/ // endRemoveIf(device) return behavior;