CaliStyle / ng-intercom

Angular 7+ Wrapper for Intercom.com
MIT License
54 stars 46 forks source link

Align Intercom to left instead of right. #51

Closed macengr closed 6 years ago

macengr commented 6 years ago

We use issues to track bugs and fixes, so general questions or advice should be asked on Stack Overflow or the Gitter Channels. Non "Fix/Bug" issues may closed without a formal response.

Before you submit an issue, please include:

Detailed Description on how to reproduce error:

My function call in my service is as follows: '''initializeIntercom(username, userEmail) { this.intercom.boot({ app_id: 'xj20wy47', alignment: 'left', horizontal_padding: 20, vertical_padding: 20, // Supports all optional configuration. name: username, // Full name email: userEmail, // Email address widget: { 'activator': '#intercom' } }); }'''

But the chat button is on the right side of the screen rather than the left.

scott-wyatt commented 6 years ago

I believe that you need to specify the styling under the widget values, but I could be wrong. The other option is to use CSS and the ID of the widget to do styling. I don't believe this is a bug, but if some one finds that it is, please feel free to reopen this issue.

arun-maddheshia commented 6 years ago
this.intercom.boot({
        app_id: "xxxxx",
        alignment: "left",
        widget: {
          activator: "#intercom"
        }
      });

chat button is on the right side alignment: "left",

nethore commented 5 years ago

Hi all,

Is it fixed ? Because with v7.0.0-beta.1 which seems to be latest version I still have the issue.

Thanks.

scott-wyatt commented 5 years ago

Try v7.0.0-beta.2, this issue should now be fixed.

nethore commented 5 years ago

Thanks. Will it be available on npm?