Skip to content
Snippets Groups Projects
Commit 9a2f2b95 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

use a 'wait' screen for the is this your computer question, needs styling and...

use a 'wait' screen for the is this your computer question, needs styling and yes and no buttons to do the right thing
parent e891a528
No related branches found
No related tags found
No related merge requests found
...@@ -21,12 +21,25 @@ BrowserID.Modules.IsThisYourComputer = (function() { ...@@ -21,12 +21,25 @@ BrowserID.Modules.IsThisYourComputer = (function() {
options.ready && options.ready(status || false); options.ready && options.ready(status || false);
}; };
self.renderDialog("is_this_your_computer", options); self.renderWait("is_this_your_computer", options);
self.click("button.this_is_my_computer", self.yes);
self.click("button.this_is_not_my_computer", self.no);
Module.sc.start.call(self, options); Module.sc.start.call(self, options);
},
yes: function() {
alert("yes!");
},
no: function() {
alert("no!");
} }
}); });
return Module; return Module;
}()); }());
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