aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/options.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:07:28 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:23 -0400
commitf378e34789ce616384ddc25704b7f58528099864 (patch)
tree96becda0951e3c6bc59fb713b63c87cc9979e3fd /tests/unit/resizable/options.js
parent824e05c337f92eb114b65e00fce8c47c5c94cce6 (diff)
downloadjquery-ui-f378e34789ce616384ddc25704b7f58528099864.tar.gz
jquery-ui-f378e34789ce616384ddc25704b7f58528099864.zip
Resizable: Style updates
Ref #14246 Ref gh-1588
Diffstat (limited to 'tests/unit/resizable/options.js')
-rw-r--r--tests/unit/resizable/options.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/resizable/options.js b/tests/unit/resizable/options.js
index 1e643a576..234348309 100644
--- a/tests/unit/resizable/options.js
+++ b/tests/unit/resizable/options.js
@@ -126,7 +126,7 @@ test("aspectRatio: 'preserve' (ne)", function() {
test( "aspectRatio: Resizing can move objects", function() {
expect( 7 );
- // http://bugs.jqueryui.com/ticket/7018 - Resizing can move objects
+ // Http://bugs.jqueryui.com/ticket/7018 - Resizing can move objects
var handleW = ".ui-resizable-w",
handleNW = ".ui-resizable-nw",
target = $( "#resizable1" ).resizable({
@@ -143,7 +143,7 @@ test( "aspectRatio: Resizing can move objects", function() {
equal( target.height(), 100, "compare height - no size change" );
equal( target.position().left, 75, "compare left - no movement" );
- // http://bugs.jqueryui.com/ticket/9107 - aspectRatio and containment not handled correctly
+ // Http://bugs.jqueryui.com/ticket/9107 - aspectRatio and containment not handled correctly
$( "#container" ).css({ width: 200, height: 300, position: "absolute", left: 100, top: 100 });
$( "#resizable1" ).css({ width: 100, height: 100, left: 0, top: 0 });
@@ -173,7 +173,7 @@ test( "containment", function() {
test( "containment - not immediate parent", function() {
expect( 4 );
- // http://bugs.jqueryui.com/ticket/7485 - Resizable: Containment calculation is wrong
+ // Http://bugs.jqueryui.com/ticket/7485 - Resizable: Containment calculation is wrong
// when containment element is not the immediate parent
var element = $( "#child" ).resizable({
containment: "#container2",
@@ -205,7 +205,7 @@ test( "containment - not immediate parent", function() {
test( "containment - immediate parent", function() {
expect( 4 );
- // http://bugs.jqueryui.com/ticket/10140 - Resizable: Width calculation is wrong when containment element is "position: relative"
+ // Http://bugs.jqueryui.com/ticket/10140 - Resizable: Width calculation is wrong when containment element is "position: relative"
// when containment element is immediate parent
var element = $( "#child" ).resizable({
containment: "parent",
@@ -302,7 +302,7 @@ test( "grid - Resizable: can be moved when grid option is set (#9611)", function
test( "grid - maintains grid with padding and border when approaching no dimensions", function() {
expect( 2 );
- // http://bugs.jqueryui.com/ticket/10437 - Resizable: border with grid option working wrong
+ // Http://bugs.jqueryui.com/ticket/10437 - Resizable: border with grid option working wrong
var handle = ".ui-resizable-nw",
target = $( "#resizable1" ).css({
padding: 5,