Skip to content

Commit

Permalink
Resizable: use background-image:url(data:) instead of background-imag…
Browse files Browse the repository at this point in the history
…e:url(about:blank) as it's shorter and safer. Thanks @epascarello . Better fixes #7233 - Resizable: resizable handles fail to work in IE if transparent and content overlaps

(cherry picked from commit 08b6a2b)
  • Loading branch information
rdworth committed Apr 10, 2011
1 parent 371f1a4 commit 541fda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/base/jquery.ui.resizable.css
Expand Up @@ -12,7 +12,7 @@
/* http://bugs.jqueryui.com/ticket/7233
- Resizable: resizable handles fail to work in IE if transparent and content overlaps
*/
background-image:url(about:blank);
background-image:url(data:);
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
Expand Down

0 comments on commit 541fda3

Please sign in to comment.