@ithaka/bonsai
Version:
ITHAKA core styling
21 lines (15 loc) • 639 B
JavaScript
import { BonsaiSocialBase } from "./bonsai.socialbase";
class BonsaiFacebook extends BonsaiSocialBase {
constructor(container) {
super(container);
this.platformName = "facebook";
this.accessibleText = "Share with Facebook";
this.buttonDataAttribute = "data-facebook-share";
this.iconClass = "icon-facebook";
this.buttonBackgroundColor = "facebook-blue-background";
this.shareUrl = `https://www.facebook.com/sharer/sharer.php?u=${this.getCurrentUrl()}`;
this.windowName = "Facebook";
this.descriptionName = this.windowName;
}
}
export { BonsaiFacebook };