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

Old Clerk v1 code but Clerk v2 is used #88

Open
mmenozzi opened this issue Oct 26, 2020 · 0 comments
Open

Old Clerk v1 code but Clerk v2 is used #88

mmenozzi opened this issue Oct 26, 2020 · 0 comments

Comments

@mmenozzi
Copy link
Contributor

function clerk_fire_power_popup() {
Clerk.ui.popup('#clerk-power-popup').show();
}
function clerk_close_power_popup() {
Clerk.ui.popup('#clerk-power-popup').close();
}

The code above still use the old syntax of Clerk v1. It should be the following in Clerk v2:

 function clerk_fire_power_popup() { 
     Clerk('ui', 'popup', '#clerk-power-popup', 'show');
 } 
  
 function clerk_close_power_popup() { 
     Clerk('ui', 'popup', '#clerk-power-popup', 'hide');
 } 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant