Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed and Open Outputs never are emitted #367

Closed
1 task done
raygig opened this issue Jan 10, 2019 · 1 comment
Closed
1 task done

Closed and Open Outputs never are emitted #367

raygig opened this issue Jan 10, 2019 · 1 comment
Labels

Comments

@raygig
Copy link

raygig commented Jan 10, 2019

I am submitting a

  • Bug Report

What is the expected behavior?

  1. When a share button is clicked and the widow opens the opened output emits
  2. When a share button is clicked and the widow closes the closed output emits

What is the current behavior?

  1. The opened output never fires
  2. The closed output never fires

What are the steps to reproduce?

Using the clode below

      <share-buttons
        [include]="['facebook','twitter','linkedin','google','pinterest','sms','email','copy']"
        [showText]="true"
        [autoSetMeta]="false"
        [title]="image.name"
        [image]="image.file.preview.medium"
        [description]="image.content"
        (closed)="closed($event)"
        (opened)="opened($event)">
      </share-buttons>
  public closed(e) {
    console.log(e);
    debugger;
  }

  public opened(e) {
    console.log(e);
    debugger;
  }

Which versions are you using for the following packages?

Angular: 6.1.3
Angular CDK: 7.0.4
Angular CLI: 6.0.8
Angular-fontawesome: 0.3.0
Share buttons: 7.1.1

@raygig raygig changed the title opened Closed and Open Outputs never are emitted Jan 10, 2019
@MurhafSousli
Copy link
Owner

You are right, something went wrong with the last update.. will fix this asap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants