Analytics: add the first graph (task repartition)

This commit is contained in:
Frédéric Guillot
2014-11-09 17:59:02 -05:00
parent 3df63e051f
commit e89ba5e9e6
29 changed files with 392 additions and 10 deletions

View File

@@ -3,6 +3,15 @@ var Kanboard = (function() {
return {
// Return true if the element#id exists
Exists: function(id) {
if (document.getElementById(id)) {
return true;
}
return false;
},
// Display a popup
Popover: function(e, callback) {
e.preventDefault();