View Single Post
Old 24 Sep 2010, 06:36 PM   #55
rabarberski
Master of the @
 
Join Date: Nov 2006
Location: Ghent, Belgium
Posts: 1,027
For quick access to syncing your address book, you can add a sync link to the top right fastmail page using this javascript tweak (see the wiki for details on javascript tweaks):

Code:
/* Put sync address book link in the header */

window.addEvent('domready', function() {
  twkSyncStr = "<a target='_blank' href=http://sync.howard.fm/Home/Sync> Sync addresses </a>" ;
  $('admin').innerHTML = twkSyncStr + "<b> | </b>" + $('admin').innerHTML ;
});
For an example of how it looks, see here.

This code directly calls the sync function (provided you let the sync website remember your logon details). To only go to the sync logon page, remove the /Home/Sync from the URL.

Last edited by rabarberski : 24 Sep 2010 at 06:47 PM.
rabarberski is offline   Reply With Quote