1 2 3 4 5 6 7 8 9 10 |
mtUpdateSignInWidget = function (u) {
if (u) {
// u is undef coming in
} else {
// mtGetUser returns an object when run from the console
u = mtGetUser();
}
u;
// u is undefined
}
|
