#268: Implement "Add" button in UserManager.

This commit is contained in:
Michael Jumper
2013-02-08 16:13:33 -08:00
parent 513c9aea60
commit 3a82560fa4
3 changed files with 48 additions and 11 deletions

View File

@@ -90,6 +90,16 @@
return true;
};
user_manager.onadd = function(username) {
user_manager.add(username);
return true;
};
user_manager.onremove = function(username) {
user_manager.remove(username);
return true;
};
]]></script>
</body>