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

Updating configuration on new instance not working #34

Open
zangrossig opened this issue Nov 25, 2019 · 0 comments
Open

Updating configuration on new instance not working #34

zangrossig opened this issue Nov 25, 2019 · 0 comments

Comments

@zangrossig
Copy link

zangrossig commented Nov 25, 2019

I'm trying to change the progress bar color after a user click, but even if I create a new instance of ldBar, I have no success:

    $(document).ready(function () {
        let p2 = new ldBar('#p2', {
            'preset': 'circle',
            'stroke': 'red'
        });
        p2.set(50, false);

        $('.btn-test').on('click', function () {

            let n = Math.floor(Math.random() * 100);
            p2 = new ldBar('#p2', {
                'stroke': 'green'
            });
            p2.set(n, false);
        });
    });

Is there a way to change configuration after the instance has been created?

Thank you for this great library!

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