UNPKG

@ithaka/bonsai

Version:
21 lines (15 loc) 629 B
import { BonsaiSocialBase } from "./bonsai.socialbase"; class BonsaiTumblr extends BonsaiSocialBase { constructor(container) { super(container); this.platformName = "tumblr"; this.accessibleText = "Share with Tumblr"; this.buttonDataAttribute = "data-tumblr-share"; this.iconClass = "icon-tumblr"; this.buttonBackgroundColor = "tumblr-blue-background"; this.shareUrl = `https://tumblr.com/widgets/share/tool?canonicalUrl=${this.getCurrentUrl()}`; this.windowName = "Tumblr"; this.descriptionName = this.windowName; } } export { BonsaiTumblr };