Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
0b031061
Commit
0b031061
authored
Feb 12, 2014
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1246 from bastjan/0.9-work
Fix browser detection for jQuery > 2.0
parents
08e705fd
5f59ec87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
jquery.flot.js
src/jquery.flot.js
+4
-1
No files found.
src/jquery.flot.js
View file @
0b031061
...
...
@@ -361,7 +361,10 @@ Licensed under the MIT license.
c
=
sin
.
toFixed
(
6
),
// when we add them to the string
transformRule
;
if
(
$
.
support
.
leadingWhitespace
)
{
// Detect IE7/8 to use microsofts proprietary matrix filter
// $.support.leadingWhitespace is false on IE7/8, true on other browsers and
// undefined with jQuery greater 2.0, which dropped support for IE7/8.
if
(
$
.
support
.
leadingWhitespace
!==
false
)
{
// The transform origin defaults to '50% 50%', producing
// blurry text on some browsers (Chrome) when the width or
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment