8000 Fix for issue 149 by gruber76 · Pull Request #203 · lojjic/PIE · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Fix for issue 149 #203

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion sources/StyleInfoBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ PIE.StyleInfoBase = {
var el = this.targetElement,
ctor = this.constructor,
s = el.style,
cs = el.currentStyle,
cs = el.currentStyle || {getAttribute:{}},
cssProp = this.cssProperty,
styleProp = this.styleProperty,
prefixedCssProp = ctor._prefixedCssProp || ( ctor._prefixedCssProp = PIE.CSS_PREFIX + cssProp ),
Expand Down
0