Permalink
Browse files
resizable visual tests: added option preventDefault tests
- Loading branch information
|
|
@@ -1,8 +1,8 @@ |
|
|
<!doctype html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<title>Simple Resizable</title> |
|
|
<link rel="stylesheet" href="../all.css" type="text/css"> |
|
|
<title>Resizable Visual Test : Default</title> |
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" /> |
|
|
<script type="text/javascript" src="../../../jquery-1.3.1.js"></script> |
|
|
<script type="text/javascript" src="../../../ui/ui.core.js"></script> |
|
@@ -15,12 +15,7 @@ |
|
|
</head> |
|
|
<body> |
|
|
|
|
|
<ul class="plugins"> |
|
|
<li class="plugin"> |
|
|
Resizable |
|
|
<div id="resizable"></div> |
|
|
</li> |
|
|
</ul> |
|
|
<div id="resizable">Resizable</div> |
|
|
|
|
|
</body> |
|
|
</html> |
|
|
@@ -0,0 +1,23 @@ |
|
|
<!doctype html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<title>Resizable Visual Test : Resizable option preventDefault false</title> |
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" /> |
|
|
<script type="text/javascript" src="../../../jquery-1.3.1.js"></script> |
|
|
<script type="text/javascript" src="../../../ui/ui.core.js"></script> |
|
|
<script type="text/javascript" src="../../../ui/ui.resizable.js"></script> |
|
|
<script type="text/javascript"> |
|
|
$(function() { |
|
|
$("#resizable").resizable({ |
|
|
preventDefault: false |
|
|
}); |
|
|
}); |
|
|
</script> |
|
|
</head> |
|
|
<body> |
|
|
|
|
|
<textarea id="resizable">Resizable</texarea> |
|
|
|
|
|
</body> |
|
|
</html> |
|
|
@@ -0,0 +1,23 @@ |
|
|
<!doctype html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<title>Resizable Visual Test : Resizable option preventDefault true</title> |
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" /> |
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" /> |
|
|
<script type="text/javascript" src="../../../jquery-1.3.1.js"></script> |
|
|
<script type="text/javascript" src="../../../ui/ui.core.js"></script> |
|
|
<script type="text/javascript" src="../../../ui/ui.resizable.js"></script> |
|
|
<script type="text/javascript"> |
|
|
$(function() { |
|
|
$("#resizable").resizable({ |
|
|
preventDefault: true |
|
|
}); |
|
|
}); |
|
|
</script> |
|
|
</head> |
|
|
<body> |
|
|
|
|
|
<textarea id="resizable">Resizable</texarea> |
|
|
|
|
|
</body> |
|
|
</html> |
0 comments on commit
625d216