Skip to content

Instantly share code, notes, and snippets.

View agileapplications's full-sized avatar

Tobias Miesel agileapplications

  • Agile Applications Tobias Miesel
  • Zurich, Switzerland
View GitHub Profile
@agileapplications
agileapplications / gist:4023561
Created November 6, 2012 08:52
Basecamp SCRUM Calculator
// add this code as a bookmark and use it on a basecamp project page
javascript: if ($('body').find('ul#calculation').length > 0) {
var list = $('body').find('ul#calculation');
list.empty();
} else {
var list = $('<ul>').attr('id', 'calculation');
$('body').append(list);
}