Skip to content

Commit 4654083

Browse files
committed
Fix issue #12, prefix border-radius in FF3.6 and safari 4
1 parent c55f7a7 commit 4654083

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

jquery.css3finalize.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @copyright 2012 zencodez.net
44
* @license http://creativecommons.org/licenses/by-sa/3.0/
55
* @package Css3-Finalize
6-
* @version 2.2 - 2012-02-09
6+
* @version 2.3 - 2012-02-14
77
* @website https://github.com/codler/jQuery-Css3-Finalize
88
*
99
* == Description ==
@@ -60,6 +60,8 @@
6060
currentPrefix = styles[i].substr(1, pos-1);
6161
}
6262
}
63+
// For FF 3.6 and safari 4
64+
supportRules.push('border-radius');
6365
} else {
6466
var deCamelCase = function(str) {
6567
return str.replace(/[A-Z]/g, function($0) { return '-' + $0.toLowerCase() });

0 commit comments

Comments
 (0)