witten
/
luminotes
Archived
1
0
Fork 0

Removed key binding for title button (ctrl-T), since it was interfering

with tab opening in Firefox.
This commit is contained in:
Dan Helfman 2008-05-27 13:38:10 -07:00
parent e971959755
commit 694dc2eaba
3 changed files with 5 additions and 4 deletions

4
NEWS
View File

@ -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

View File

@ -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" );

View File

@ -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",