diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-24 18:02:36 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-24 18:02:36 -0700 |
commit | 292d216f7c133152cb921db1cbc7a0c4843a977a (patch) | |
tree | 6939325eed13464b6c5a6bb8437c21c45355b27f /modules/digibug/js/digibug.js | |
parent | f56d372629df5b08a30d0182d4e1e7c97a44d79f (diff) |
Implement printing support on the photo page. I've used an icon that doesn't
quite match the theme temporarily. I'm hoping to have a matching icon soon.
Diffstat (limited to 'modules/digibug/js/digibug.js')
-rw-r--r-- | modules/digibug/js/digibug.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/digibug/js/digibug.js b/modules/digibug/js/digibug.js index e9e8933e..837c8f7f 100644 --- a/modules/digibug/js/digibug.js +++ b/modules/digibug/js/digibug.js @@ -3,6 +3,10 @@ $(document).ready(function() { e.preventDefault(); queue_print(e); }); + $("#gDigibugLink").click(function(e) { + e.preventDefault(); + return queue_print(e); + }); }); function popUp(url, options) { |