diff --git a/NEWS b/NEWS index 8d9aa0b..0b41014 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.3.39: May 27, 2008 + * Removed key binding for title button (ctrl-T), since it was interfering + with tab opening in Firefox. + 1.3.38: May 26, 2008 * Attempting to access the RSS feed for a non-existent notebook now displays a somewhat informative message in the feed instead of just diff --git a/static/js/Wiki.js b/static/js/Wiki.js index a4278e9..090be5a 100644 --- a/static/js/Wiki.js +++ b/static/js/Wiki.js @@ -919,9 +919,6 @@ Wiki.prototype.editor_key_pressed = function ( editor, event ) { // ctrl-s: strikethrough } else if ( code == 83 ) { this.toggle_button( event, "strikethrough" ); - // ctrl-t: title - } else if ( code == 84 ) { - this.toggle_button( event, "title" ); // ctrl-period: unordered list } else if ( code == 190 ) { this.toggle_button( event, "insertUnorderedList" ); diff --git a/view/Toolbar.py b/view/Toolbar.py index 3af8740..bf807de 100644 --- a/view/Toolbar.py +++ b/view/Toolbar.py @@ -60,7 +60,7 @@ class Toolbar( Div ): ) ), Div( Input( type = u"image", - id = u"title", title = u"title [ctrl-T]", + id = u"title", title = u"title", src = u"/static/images/toolbar/title_button.png", width = u"40", height = u"40", class_ = "image_button",