| 1 |
// $Id$ |
// $Id: sharethis.js,v 1.1.2.1.2.2 2009/08/14 03:44:10 robloach Exp $ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* The Drupal behaviors for the ShareThis web service. |
* The Drupal behaviors for the ShareThis web service. |
| 11 |
title: options['title'], |
title: options['title'], |
| 12 |
url: options['url'] |
url: options['url'] |
| 13 |
}); |
}); |
| 14 |
shared_object.attachButton(document.getElementById(id), {button: false}); |
if (options['chicklet'] || false) { |
| 15 |
$('#'+id).click(function() { return false; }); |
shared_object.attachChicklet(options['chicklet'], document.getElementById(id)); |
| 16 |
|
} |
| 17 |
|
else { |
| 18 |
|
shared_object.attachButton(document.getElementById(id), {button: false}); |
| 19 |
|
} |
| 20 |
|
$('#' + id).click(function() { return false; }); |
| 21 |
}); |
}); |
| 22 |
} |
} |
| 23 |
}; |
}; |