This repository was archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
IE filter property #15
Closed
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7ab712b
IE filter property
mcanepa cec60f7
fix opacityFilter() return string
mcanepa 778c9d0
compat for older IE
mcanepa ce46d65
Update lib/themeroller.js
mcanepa 0ac075d
compat for older IE
mcanepa 0ee0a37
compat for older IE
mcanepa 33ac4d5
compat for older IE
mcanepa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,17 +112,33 @@ function ThemeRoller( baseThemeCss, vars, options ) { | |
|
||
} else { | ||
|
||
// For version >= 1.10.0, filter has its own separate line and variable name. | ||
opacityFix = function( opacity ) { | ||
return ( opacity / 100 ).toString().replace( /^0\./, "." ); | ||
}; | ||
opacityFilter = function( opacity ) { | ||
return "Alpha(Opacity=" + opacity + ")"; | ||
}; | ||
vars.opacityFilterOverlay = opacityFilter( vars.opacityOverlay ); | ||
vars.opacityFilterShadow = opacityFilter( vars.opacityShadow ); | ||
vars.opacityOverlay = opacityFix( vars.opacityOverlay ); | ||
vars.opacityShadow = opacityFix( vars.opacityShadow ); | ||
if ( options.version && semver.lt( options.version, "1.13.0" ) ) { | ||
|
||
// For version >= 1.10.0 < 1.13.0, filter has its own separate line and variable name. | ||
opacityFix = function( opacity ) { | ||
return ( opacity / 100 ).toString().replace( /^0\./, "." ); | ||
}; | ||
opacityFilter = function( opacity ) { | ||
return "Alpha(Opacity=" + opacity + ")"; | ||
}; | ||
vars.opacityFilterOverlay = opacityFilter( vars.opacityOverlay ); | ||
vars.opacityFilterShadow = opacityFilter( vars.opacityShadow ); | ||
vars.opacityOverlay = opacityFix( vars.opacityOverlay ); | ||
vars.opacityShadow = opacityFix( vars.opacityShadow ); | ||
} | ||
else { | ||
// For version >= 1.13.0, filter has its own separate line and variable name. | ||
opacityFix = function( opacity ) { | ||
return ( opacity / 100 ).toString().replace( /^0\./, "." ); | ||
}; | ||
opacityFilter = function( opacity ) { | ||
return "alpha(opacity=" + opacity + ")"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are still no quotes wrapping the whole value here. |
||
}; | ||
vars.opacityFilterOverlay = opacityFilter( vars.opacityOverlay ); | ||
vars.opacityFilterShadow = opacityFilter( vars.opacityShadow ); | ||
vars.opacityOverlay = opacityFix( vars.opacityOverlay ); | ||
vars.opacityShadow = opacityFix( vars.opacityShadow ); | ||
} | ||
} | ||
|
||
// Add '#' in the beginning of the colors if needed | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’ve just noticed - don’t nest this all within the
else
above, just useelse if
. That will help avoid all these indentation changes below as well.