Skip to content

Commit 6e89083

Browse files
committed
Fix #18, remove cssHooks display
1 parent f00a21b commit 6e89083

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

README.markdown

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Simply add this line of code to your site for latest version
2020

2121
or for version 3.0
2222

23-
<script src="https://cdnjs.cloudflare.com/ajax/libs/css3finalize/3.0/jquery.css3finalize.min.js"></script>
23+
<script src="https://cdnjs.cloudflare.com/ajax/libs/css3finalize/3.1/jquery.css3finalize.min.js"></script>
2424

2525
Once the script is loaded it will search for style-tags and link-tags (within same domain) and parse them.
2626

@@ -74,6 +74,10 @@ I appreciate all feedback, thanks! If you would like to donate you can send to t
7474

7575
## Change log ##
7676

77+
2012-09-06 - **v3.1**
78+
79+
* Remove prefixing flex in cssHooks. ([codler](https://github.com/codler) [#18](https://github.com/codler/jQuery-Css3-Finalize/issues/18))
80+
7781
2012-08-21 - **v3.0**
7882

7983
The time has come to drop support for older browser.

jquery.css3finalize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! CSS3 Finalize - v3.0 - 2012-08-21 - Automatically add vendor prefixes.
1+
/*! CSS3 Finalize - v3.1 - 2012-09-06 - Automatically add vendor prefixes.
22
* https://github.com/codler/jQuery-Css3-Finalize
33
* Copyright (c) 2012 Han Lin Yap http://yap.nu; http://creativecommons.org/licenses/by-sa/3.0/ */
44
(function ($) {
@@ -455,7 +455,7 @@
455455
} catch(e){}
456456
}
457457

458-
var valueRules = 'background background-image transition transition-property display'.split(' ');
458+
var valueRules = 'background background-image transition transition-property'.split(' ');
459459
$.each(valueRules, function(property) {
460460
if ($.inArray(valueRules[property], supportRules) === -1) {
461461
setCssHook(valueRules[property], valueRules[property]);

jquery.css3finalize.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/test.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<script src="libs/jquery-1.8.0.min.js"></script>
1515

1616
<script>
17-
/*! CSS3 Finalize - v3.0 - 2012-08-21 - Automatically add vendor prefixes.
17+
/*! CSS3 Finalize - v3.1 - 2012-09-06 - Automatically add vendor prefixes.
1818
* https://github.com/codler/jQuery-Css3-Finalize
1919
* Copyright (c) 2012 Han Lin Yap http://yap.nu; http://creativecommons.org/licenses/by-sa/3.0/ */
2020
(function ($) {
@@ -471,7 +471,7 @@
471471
} catch(e){}
472472
}
473473

474-
var valueRules = 'background background-image transition transition-property display'.split(' ');
474+
var valueRules = 'background background-image transition transition-property'.split(' ');
475475
$.each(valueRules, function(property) {
476476
if ($.inArray(valueRules[property], supportRules) === -1) {
477477
setCssHook(valueRules[property], valueRules[property]);

0 commit comments

Comments
 (0)