witten
/
luminotes
Archived
1
0
Fork 0

More title tags for various links.

This commit is contained in:
Dan Helfman 2007-08-20 20:10:19 +00:00
parent 22767f1cc9
commit 082697fe5a
1 changed files with 3 additions and 3 deletions

View File

@ -86,9 +86,9 @@ Wiki.prototype.populate = function ( result ) {
replaceChildNodes( "notebook_area", span );
appendChildNodes( span, createDOM( "h3", this.notebook.name ) );
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/" + this.notebook.object_id, "id": "recent_notes_link" }, "recent notes" ) );
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/" + this.notebook.object_id, "id": "recent_notes_link", "title": "View the most recently updated notes." }, "recent notes" ) );
appendChildNodes( span, createDOM( "br" ) );
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/download_html/" + this.notebook.object_id, "id": "download_html_link" }, "download as html" ) );
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/download_html/" + this.notebook.object_id, "id": "download_html_link", "title": "Download a stand-alone copy of the entire wiki notebook." }, "download as html" ) );
if ( this.notebook.read_write ) {
this.read_write = true;
@ -96,7 +96,7 @@ Wiki.prototype.populate = function ( result ) {
appendChildNodes( span, createDOM( "br" ) );
if ( this.notebook.trash )
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/" + this.notebook.trash.object_id, "id": "trash_link" }, "trash" ) );
appendChildNodes( span, createDOM( "a", { "href": "/notebooks/" + this.notebook.trash.object_id, "id": "trash_link", "title": "Look here for notes you've deleted." }, "trash" ) );
connect( window, "onunload", function ( event ) { self.editor_focused( null, true ); } );
connect( "bold", "onclick", function ( event ) { self.toggle_button( event, "bold" ); } );