8000 Cleanup old code that was there to support the Internet Explorer by archmoj · Pull Request #7251 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Cleanup old code that was there to support the Internet Explorer #7251

New issue 8000

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

Merged
merged 8 commits into from
Oct 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
allow Math.sign()
  • Loading branch information
archmoj committed Oct 24, 2024
commit b1988a304a2a84d8629d12224bfa61fc6cab54f3
5 changes: 1 addition & 4 deletions tasks/test_syntax.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,7 @@ function assertSrcContents() {
// look for .classList
if(node.type === 'MemberExpression') {
var source = node.source();

if(source === 'Math.sign') {
logs.push(file + ' : contains Math.sign (IE failure)');
} else if(source === 'window.getComputedStyle') {
if(source === 'window.getComputedStyle') {
getComputedStyleCnt++;
}
} else if(node.type === 'Identifier' && node.source() === 'getComputedStyle') {
Expand Down
0