Skip to content

Commit 08b6a2b

Browse files
committed
Resizable: use background-image:url(data:) instead of background-image: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
1 parent 64f13b6 commit 08b6a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

themes/base/jquery.ui.resizable.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/* http://bugs.jqueryui.com/ticket/7233
1313
- Resizable: resizable handles fail to work in IE if transparent and content overlaps
1414
*/
15-
background-image:url(about:blank);
15+
background-image:url(data:);
1616
}
1717
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
1818
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }

0 commit comments

Comments
 (0)