- May 22, 2012
-
-
Shane Tomlinson authored
* For the buttons, use id's instead of classes. * Focus the "yes" button when the screen is shown. issue #1582
-
- May 21, 2012
-
-
Shane Tomlinson authored
close #1592 Issue1592
-
- May 20, 2012
-
-
Lloyd Hilaiel authored
fix bug preventing proper handling of old style verification links by new style code, documented exhaustively in issue #1592.
-
Lloyd Hilaiel authored
zero-change cosmetic cleanup of code. make exit points explicit, and use curly braces consistently.
-
- May 17, 2012
-
-
Jed Parsons authored
Fix loadgen
-
Jed Parsons authored
removed extraneous ca.verifyBundle and ca.verifyChain
-
- May 15, 2012
-
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
issue #1592 update complete_email_addition to accept a password in the case that email verification was started on a previous version of the software that didn't collect a password in-dialog
-
Lloyd Hilaiel authored
issue #1592 - update complete_user_creation to accept a password in the case that email verification was started on a previous version of code.
-
Shane Tomlinson authored
Make users who have not yet set their password by time they reach the landing page set their password. issue #1592
-
Lloyd Hilaiel authored
-
Shane Tomlinson authored
cleanup transitional code for migration from email to userid in stage table r+ - nice cleanup @lloyd! Tests run, verified by creating new users and adding users to existing account. close #1599
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
- May 07, 2012
-
-
Jed Parsons authored
-
- May 14, 2012
-
-
Lloyd Hilaiel authored
Adding timestamp server side to get an intial integration going.
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
- May 11, 2012
-
-
Austin King authored
when the server returns a 413 error for posting of interaction data, cle...
-
Lloyd Hilaiel authored
Fix for Chrome shifting the "Sign In" button in the email picker when clicking.
-
Lloyd Hilaiel authored
when the server returns a 413 error for posting of interaction data, clear the data from local storage - issue #1567
-
Shane Tomlinson authored
issue #1581
-
- May 10, 2012
-
-
Ben Adida authored
insert a setTimeout between two main phases of assertion generation closes #1575
-
Lloyd Hilaiel authored
insert a setTimeout between two main phases of assertion generation to prevent unresponsive script warnings in IE8 - issue #1575
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
Partial fix IE6 and IE7 blowing up on main site. These browsers do not have Array.prototype.indexOf
-
Lloyd Hilaiel authored
-
Lloyd Hilaiel authored
-
- May 09, 2012
-
-
Lloyd Hilaiel authored
-
Austin King authored
can now set MYSQL_PASSWORD in env
-
Jed Parsons authored
-
- May 08, 2012
-
-
Shane Tomlinson authored
* css/style.css - where relevant and opacity's are used, use filters for IE6 and IE7. * shared/storage.js - when clearing localStorage if the user is not authenticated, call removeItem for the emails. The call to JSON.stringify was blowing up. issue #1529
-
Shane Tomlinson authored
Partial fix IE6 and IE7 blowing up on main site. These browsers do not have Array.prototype.indexOf issue #1552
-
Shane Tomlinson authored
@ozten - Nice work on the cleanup. What if we created one logger that we could use to universally log these sorts of things? If we consolidated all of the logging into one module, we could add/remove/turn on or off functionality we use for logging. For the removed "delete" statement, it is safer to use localStorage.removeItem. I forgot which browser was giving us problems with that, in the end I wrote a load of unit tests and did a browser comparison blog post (http://www.shanetomlinson.com/2012/localstorage-bugs-inconsistent-removeitem-delete/) - the trouble with delete came from IE8. In IE8, if the item you are trying to call delete on is not already in localStorage, it will throw an exception. IE8 does not have this problem with localStorage.removeItem. r+ - Merging. close #1546
-
Shane Tomlinson authored
Replace the removed `delete storage.interactionData` with localStorage.removeItem("interactionData") to avoid IE8 exceptions.
-