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

Using var instead let in order to support old browsers #952

Closed
wants to merge 1 commit into from
Closed

Using var instead let in order to support old browsers #952

wants to merge 1 commit into from

Conversation

matheussouza9
Copy link

My applications needs to run on Firefox 43 (unfortunaly I can't update it) and it doesn't support let identifier. So, this simple pull request changes it to var.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.02%) to 90.199% when pulling 16d1c43 on matheussouza9:master into da2a028 on danvk:master.

@danvk
Copy link
Owner

danvk commented Jan 30, 2019 via email

@matheussouza9
Copy link
Author

Dygraphs installed from npm. I'm using with Angular 7.
import Dygraph from 'dygraphs'
Importing it like this, it loads dygraph.js from src instead dygraph.min.js from dist.
To solve the problem, I've added the path to the minified file in angular.json scripts section like
"scripts": [ "node_modules/dygraphs/dist/dygraph.min.js" ]
and "importing" (only declaring) in .ts files like this:
declare let Dygraph: any;

@danvk
Copy link
Owner

danvk commented Jan 30, 2019

There's also an index.es5.js file that you could try importing instead.

@mirabilos mirabilos closed this Dec 9, 2022
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

Successfully merging this pull request may close these issues.

4 participants