Make WordPress Core

Changeset 120


Ignore:
Timestamp:
06/01/2003 04:22:20 AM (23 years ago)
Author:
saxmatt
Message:

You can now press ESC to close the popup window.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/b2commentspopup.php

    r111 r120  
    106106<p class="credit"><?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org"><strong>Wordpress</strong></a></cite></p>
    107107
    108 
     108<?php
     109// Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18)
     110?>
     111<script type="text/javascript">
     112document.onkeypress = function esc(e) {
     113    if(typeof(e) == "undefined") { e=event; }
     114    if (e.keyCode == 27) { self.close(); }
     115}
     116</script>
    109117</body>
    110118</html>
Note: See TracChangeset for help on using the changeset viewer.