Skip to content

Commit f3510fb

Browse files
committed
Fix IE8- background-position-x/y bug in jQuery 1.9, bump to v0.6.2
1 parent 6252026 commit f3510fb

9 files changed

+705
-617
lines changed

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery.stellar",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"main": ["./jquery.stellar.js"],
55
"dependencies": {
66
"jquery": ">=1.4.3"

grunt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = function(grunt) {
2222
port: 8573
2323
},
2424
qunit: {
25-
urls: ['1.4.3', '1.9.1', '2.0.0b1'].map(function(version) {
25+
urls: ['1.4.3', '1.9.1', '2.0.0b2'].map(function(version) {
2626
return 'http://localhost:<%= server.port %>/test/jquery.stellar.html?jquery=' + version;
2727
})
2828
},

jquery.stellar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Stellar.js v0.6.1
2+
* Stellar.js v0.6.2
33
* http://markdalgleish.com/projects/stellar.js
44
*
55
* Copyright 2013, Mark Dalgleish
@@ -89,7 +89,7 @@
8989

9090
prefixedTransform = vendorPrefix('transform'),
9191

92-
supportsBackgroundPositionXY = $('<div />').css('background-position-x') !== undefined,
92+
supportsBackgroundPositionXY = $('<div />', { style: 'background:#fff' }).css('background-position-x') !== undefined,
9393

9494
setBackgroundPosition = (supportsBackgroundPositionXY ?
9595
function($elem, x, y) {

jquery.stellar.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.

0 commit comments

Comments
 (0)