starting to hook up a modal menu

This commit is contained in:
Max Ogden
2011-07-01 18:19:17 -07:00
parent 1b934faaa2
commit 4c520172a9
3 changed files with 40 additions and 0 deletions

View File

@@ -30,6 +30,12 @@ app.routes = {
app.after = {
tableContainer: function() {
removalist.activateControls();
},
dataTable: function() {
$('.column-header-menu').click(function(e) {
var offset = $(e.target).offset();
$('.menu').show().css({top: offset.top + 20, left: offset.left});
})
}
}