Make the web app take up all available screen space
Had the HTML body set with absurdly huge margins. Now we have much more space to work with. I also lengthened the button names so that they hopefully make more sense, now that we have more space to work with.
This commit is contained in:
parent
e9ad69cb79
commit
c1001ba0fe
3 changed files with 23 additions and 18 deletions
|
@ -119,6 +119,13 @@ function setup_ui_elements()
|
|||
$("#gems_include_events").change(function() {
|
||||
handle_gem_event_box(this.checked);
|
||||
});
|
||||
|
||||
// set up gem event calc note dialog
|
||||
// $("#dialog").dialog({ autoOpen: false });
|
||||
$("a#To").click(function(e) {
|
||||
e.preventDefault();
|
||||
$("#dialog").dialog({height:300});
|
||||
});
|
||||
}
|
||||
|
||||
function handle_gem_event_box(show_it)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue