mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
set svn:eol-style to native
This commit is contained in:
parent
027e4d57b7
commit
8306e62887
@ -1,19 +1,19 @@
|
|||||||
<div id="area" style="position: relative; width: 400px; height: 300px; border: 1px solid #bbb;">
|
<div id="area" style="position: relative; width: 400px; height: 300px; border: 1px solid #bbb;">
|
||||||
<img src="templates/images/white.gif" style="width: 400px; height: 300px;"/>
|
<img src="templates/images/white.gif" style="width: 400px; height: 300px;"/>
|
||||||
<img id="target" src="templates/images/target.jpeg" style="position: absolute; left: 0px; top: 0px;"/>
|
<img id="target" src="templates/images/target.jpeg" style="position: absolute; left: 0px; top: 0px;"/>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function moveToHere(event, easing) {
|
function moveToHere(event, easing) {
|
||||||
var area = $("#area");
|
var area = $("#area");
|
||||||
var target = $("#target");
|
var target = $("#target");
|
||||||
var offset = area.offset();
|
var offset = area.offset();
|
||||||
var max = [area.width() - target.width(), area.height() - target.height()];
|
var max = [area.width() - target.width(), area.height() - target.height()];
|
||||||
var scroll = [document.documentElement.scrollLeft || document.body.scrollLeft,
|
var scroll = [document.documentElement.scrollLeft || document.body.scrollLeft,
|
||||||
document.documentElement.scrollTop || document.body.scrollTop];
|
document.documentElement.scrollTop || document.body.scrollTop];
|
||||||
target.animate({left: Math.max(0, Math.min((event.clientX + scroll[0]) -
|
target.animate({left: Math.max(0, Math.min((event.clientX + scroll[0]) -
|
||||||
offset.left - (target.width() / 2), max[0])),
|
offset.left - (target.width() / 2), max[0])),
|
||||||
top: Math.max(0, Math.min((event.clientY + scroll[1]) -
|
top: Math.max(0, Math.min((event.clientY + scroll[1]) -
|
||||||
offset.top - (target.height() / 2), max[1]))},
|
offset.top - (target.height() / 2), max[1]))},
|
||||||
2000, easing);
|
2000, easing);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
@ -1,41 +1,41 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>jQuery UI Droppable Test Suite</title>
|
<title>jQuery UI Droppable Test Suite</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
||||||
|
|
||||||
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.droppable.js"></script>
|
<script type="text/javascript" src="../ui/ui.droppable.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
||||||
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="droppable.js"></script>
|
<script type="text/javascript" src="droppable.js"></script>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
html { border: 0; }
|
html { border: 0; }
|
||||||
#main {
|
#main {
|
||||||
position:absolute !important;
|
position:absolute !important;
|
||||||
top: -1000px !important;
|
top: -1000px !important;
|
||||||
left: -1000px !important;
|
left: -1000px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<h1 id="header">jQuery UI Droppable Test Suite</h1>
|
<h1 id="header">jQuery UI Droppable Test Suite</h1>
|
||||||
<h2 id="banner"></h2>
|
<h2 id="banner"></h2>
|
||||||
<h2 id="userAgent"></h2>
|
<h2 id="userAgent"></h2>
|
||||||
|
|
||||||
<ol id="tests"></ol>
|
<ol id="tests"></ol>
|
||||||
|
|
||||||
<div id="main">
|
<div id="main">
|
||||||
<div id="draggable1" style="width: 25px; height: 25px;">Draggable</div>
|
<div id="draggable1" style="width: 25px; height: 25px;">Draggable</div>
|
||||||
<div id="droppable1" style="width: 100px; height: 100px;">Droppable</div>
|
<div id="droppable1" style="width: 100px; height: 100px;">Droppable</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,223 +1,223 @@
|
|||||||
/*
|
/*
|
||||||
* droppable unit tests
|
* droppable unit tests
|
||||||
*/
|
*/
|
||||||
(function($) {
|
(function($) {
|
||||||
//
|
//
|
||||||
// Droppable Test Helper Functions
|
// Droppable Test Helper Functions
|
||||||
//
|
//
|
||||||
|
|
||||||
var defaults = {
|
var defaults = {
|
||||||
accept: null,
|
accept: null,
|
||||||
activeClass: null,
|
activeClass: null,
|
||||||
cssNamespace: "ui",
|
cssNamespace: "ui",
|
||||||
disabled: false,
|
disabled: false,
|
||||||
greedy: false,
|
greedy: false,
|
||||||
hoverClass: null,
|
hoverClass: null,
|
||||||
scope: "default",
|
scope: "default",
|
||||||
tolerance: "intersect"
|
tolerance: "intersect"
|
||||||
};
|
};
|
||||||
|
|
||||||
var el, drg;
|
var el, drg;
|
||||||
|
|
||||||
function shouldBeDroppable() {
|
function shouldBeDroppable() {
|
||||||
ok(false, "missing test - should be droppable");
|
ok(false, "missing test - should be droppable");
|
||||||
}
|
}
|
||||||
|
|
||||||
function shouldNotBeDroppable() {
|
function shouldNotBeDroppable() {
|
||||||
ok(false, "missing test - should not be droppable");
|
ok(false, "missing test - should not be droppable");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Droppable Tests
|
// Droppable Tests
|
||||||
module("droppable");
|
module("droppable");
|
||||||
|
|
||||||
test("init", function() {
|
test("init", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
|
|
||||||
$("<div></div>").appendTo('body').droppable().remove();
|
$("<div></div>").appendTo('body').droppable().remove();
|
||||||
ok(true, '.droppable() called on element');
|
ok(true, '.droppable() called on element');
|
||||||
|
|
||||||
$([]).droppable();
|
$([]).droppable();
|
||||||
ok(true, '.droppable() called on empty collection');
|
ok(true, '.droppable() called on empty collection');
|
||||||
|
|
||||||
$("<div></div>").droppable();
|
$("<div></div>").droppable();
|
||||||
ok(true, '.droppable() called on disconnected DOMElement');
|
ok(true, '.droppable() called on disconnected DOMElement');
|
||||||
|
|
||||||
$("<div></div>").droppable().droppable("foo");
|
$("<div></div>").droppable().droppable("foo");
|
||||||
ok(true, 'arbitrary method called after init');
|
ok(true, 'arbitrary method called after init');
|
||||||
|
|
||||||
$("<div></div>").droppable().data("foo.droppable");
|
$("<div></div>").droppable().data("foo.droppable");
|
||||||
ok(true, 'arbitrary option getter after init');
|
ok(true, 'arbitrary option getter after init');
|
||||||
|
|
||||||
$("<div></div>").droppable().data("foo.droppable", "bar");
|
$("<div></div>").droppable().data("foo.droppable", "bar");
|
||||||
ok(true, 'arbitrary option setter after init');
|
ok(true, 'arbitrary option setter after init');
|
||||||
});
|
});
|
||||||
|
|
||||||
test("destroy", function() {
|
test("destroy", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
|
|
||||||
$("<div></div>").appendTo('body').droppable().droppable("destroy").remove();
|
$("<div></div>").appendTo('body').droppable().droppable("destroy").remove();
|
||||||
ok(true, '.droppable("destroy") called on element');
|
ok(true, '.droppable("destroy") called on element');
|
||||||
|
|
||||||
$([]).droppable().droppable("destroy");
|
$([]).droppable().droppable("destroy");
|
||||||
ok(true, '.droppable("destroy") called on empty collection');
|
ok(true, '.droppable("destroy") called on empty collection');
|
||||||
|
|
||||||
$("<div></div>").droppable().droppable("destroy");
|
$("<div></div>").droppable().droppable("destroy");
|
||||||
ok(true, '.droppable("destroy") called on disconnected DOMElement');
|
ok(true, '.droppable("destroy") called on disconnected DOMElement');
|
||||||
|
|
||||||
$("<div></div>").droppable().droppable("destroy").droppable("foo");
|
$("<div></div>").droppable().droppable("destroy").droppable("foo");
|
||||||
ok(true, 'arbitrary method called after destroy');
|
ok(true, 'arbitrary method called after destroy');
|
||||||
|
|
||||||
$("<div></div>").droppable().droppable("destroy").data("foo.droppable");
|
$("<div></div>").droppable().droppable("destroy").data("foo.droppable");
|
||||||
ok(true, 'arbitrary option getter after destroy');
|
ok(true, 'arbitrary option getter after destroy');
|
||||||
|
|
||||||
$("<div></div>").droppable().droppable("destroy").data("foo.droppable", "bar");
|
$("<div></div>").droppable().droppable("destroy").data("foo.droppable", "bar");
|
||||||
ok(true, 'arbitrary option setter after destroy');
|
ok(true, 'arbitrary option setter after destroy');
|
||||||
});
|
});
|
||||||
|
|
||||||
test("enable", function() {
|
test("enable", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
el = $("#droppable1").droppable({ disabled: true });
|
el = $("#droppable1").droppable({ disabled: true });
|
||||||
shouldNotBeDroppable();
|
shouldNotBeDroppable();
|
||||||
el.droppable("enable");
|
el.droppable("enable");
|
||||||
shouldBeDroppable();
|
shouldBeDroppable();
|
||||||
equals(el.data("disabled.droppable"), false, "disabled.droppable getter");
|
equals(el.data("disabled.droppable"), false, "disabled.droppable getter");
|
||||||
el.droppable("destroy");
|
el.droppable("destroy");
|
||||||
el.droppable({ disabled: true });
|
el.droppable({ disabled: true });
|
||||||
shouldNotBeDroppable();
|
shouldNotBeDroppable();
|
||||||
el.data("disabled.droppable", false);
|
el.data("disabled.droppable", false);
|
||||||
equals(el.data("disabled.droppable"), false, "disabled.droppable setter");
|
equals(el.data("disabled.droppable"), false, "disabled.droppable setter");
|
||||||
shouldBeDroppable();
|
shouldBeDroppable();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("disable", function() {
|
test("disable", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
el = $("#droppable1").droppable({ disabled: false });
|
el = $("#droppable1").droppable({ disabled: false });
|
||||||
shouldBeDroppable();
|
shouldBeDroppable();
|
||||||
el.droppable("disable");
|
el.droppable("disable");
|
||||||
shouldNotBeDroppable();
|
shouldNotBeDroppable();
|
||||||
equals(el.data("disabled.droppable"), true, "disabled.droppable getter");
|
equals(el.data("disabled.droppable"), true, "disabled.droppable getter");
|
||||||
el.droppable("destroy");
|
el.droppable("destroy");
|
||||||
el.droppable({ disabled: false });
|
el.droppable({ disabled: false });
|
||||||
shouldBeDroppable();
|
shouldBeDroppable();
|
||||||
el.data("disabled.droppable", true);
|
el.data("disabled.droppable", true);
|
||||||
equals(el.data("disabled.droppable"), true, "disabled.droppable setter");
|
equals(el.data("disabled.droppable"), true, "disabled.droppable setter");
|
||||||
shouldNotBeDroppable();
|
shouldNotBeDroppable();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("element types", function() {
|
test("element types", function() {
|
||||||
var typeNames = ('p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form'
|
var typeNames = ('p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form'
|
||||||
+ ',table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr'
|
+ ',table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr'
|
||||||
+ ',acronym,code,samp,kbd,var,img,object,hr'
|
+ ',acronym,code,samp,kbd,var,img,object,hr'
|
||||||
+ ',input,button,label,select,iframe').split(',');
|
+ ',input,button,label,select,iframe').split(',');
|
||||||
|
|
||||||
$.each(typeNames, function(i) {
|
$.each(typeNames, function(i) {
|
||||||
var typeName = typeNames[i];
|
var typeName = typeNames[i];
|
||||||
el = $(document.createElement(typeName)).appendTo('body');
|
el = $(document.createElement(typeName)).appendTo('body');
|
||||||
(typeName == 'table' && el.append("<tr><td>content</td></tr>"));
|
(typeName == 'table' && el.append("<tr><td>content</td></tr>"));
|
||||||
el.droppable();
|
el.droppable();
|
||||||
shouldBeDroppable();
|
shouldBeDroppable();
|
||||||
el.droppable("destroy");
|
el.droppable("destroy");
|
||||||
el.remove();
|
el.remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test("defaults", function() {
|
test("defaults", function() {
|
||||||
el = $("<div></div>").droppable();
|
el = $("<div></div>").droppable();
|
||||||
$.each(defaults, function(key, val) {
|
$.each(defaults, function(key, val) {
|
||||||
var actual = el.data(key + ".droppable"), expected = val;
|
var actual = el.data(key + ".droppable"), expected = val;
|
||||||
same(actual, expected, key);
|
same(actual, expected, key);
|
||||||
});
|
});
|
||||||
el.remove();
|
el.remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("option setting", function() {
|
test("option setting", function() {
|
||||||
// The plugin shouldn't modify an option value set by the user
|
// The plugin shouldn't modify an option value set by the user
|
||||||
$.each(defaults, function(key, val) {
|
$.each(defaults, function(key, val) {
|
||||||
el = $("<div></div>").droppable();
|
el = $("<div></div>").droppable();
|
||||||
el.data(key + ".droppable", val);
|
el.data(key + ".droppable", val);
|
||||||
var actual = el.data(key + ".droppable"), expected = val;
|
var actual = el.data(key + ".droppable"), expected = val;
|
||||||
same(actual, expected, key);
|
same(actual, expected, key);
|
||||||
el.remove();
|
el.remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
module("droppable: Options");
|
module("droppable: Options");
|
||||||
|
|
||||||
test("accept, selector", function() {
|
test("accept, selector", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("accept, fn", function() {
|
test("accept, fn", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("activeClass", function() {
|
test("activeClass", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("cssNamespace", function() {
|
test("cssNamespace", function() {
|
||||||
//cssNamespace should be appended with '-droppable' and added as className
|
//cssNamespace should be appended with '-droppable' and added as className
|
||||||
el = $("<div></div>").droppable({ cssNamespace: "ui" });
|
el = $("<div></div>").droppable({ cssNamespace: "ui" });
|
||||||
equals(el[0].className, "ui-droppable");
|
equals(el[0].className, "ui-droppable");
|
||||||
el.droppable("destroy");
|
el.droppable("destroy");
|
||||||
|
|
||||||
//no className should be added if cssNamepsace is null
|
//no className should be added if cssNamepsace is null
|
||||||
el = $("<div></div>").droppable({ cssNamespace: null });
|
el = $("<div></div>").droppable({ cssNamespace: null });
|
||||||
equals(el[0].className, "");
|
equals(el[0].className, "");
|
||||||
el.droppable("destroy");
|
el.droppable("destroy");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("greedy", function() {
|
test("greedy", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("hoverClass", function() {
|
test("hoverClass", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("scope", function() {
|
test("scope", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("tolerance, fit", function() {
|
test("tolerance, fit", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("tolerance, intersect", function() {
|
test("tolerance, intersect", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("tolerance, pointer", function() {
|
test("tolerance, pointer", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("tolerance, touch", function() {
|
test("tolerance, touch", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
module("droppable: Callbacks");
|
module("droppable: Callbacks");
|
||||||
|
|
||||||
test("activate", function() {
|
test("activate", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("deactivate", function() {
|
test("deactivate", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("over", function() {
|
test("over", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("out", function() {
|
test("out", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("drop", function() {
|
test("drop", function() {
|
||||||
ok(false, "missing test");
|
ok(false, "missing test");
|
||||||
});
|
});
|
||||||
|
|
||||||
module("droppable: Tickets");
|
module("droppable: Tickets");
|
||||||
|
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>jQuery UI Test Suite</title>
|
<title>jQuery UI Test Suite</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
||||||
|
|
||||||
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.accordion.js"></script>
|
<script type="text/javascript" src="../ui/ui.accordion.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.datepicker.js"></script>
|
<script type="text/javascript" src="../ui/ui.datepicker.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.dialog.js"></script>
|
<script type="text/javascript" src="../ui/ui.dialog.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.droppable.js"></script>
|
<script type="text/javascript" src="../ui/ui.droppable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.progressbar.js"></script>
|
<script type="text/javascript" src="../ui/ui.progressbar.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.resizable.js"></script>
|
<script type="text/javascript" src="../ui/ui.resizable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.selectable.js"></script>
|
<script type="text/javascript" src="../ui/ui.selectable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.slider.js"></script>
|
<script type="text/javascript" src="../ui/ui.slider.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.sortable.js"></script>
|
<script type="text/javascript" src="../ui/ui.sortable.js"></script>
|
||||||
<script type="text/javascript" src="../ui/ui.tabs.js"></script>
|
<script type="text/javascript" src="../ui/ui.tabs.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
||||||
<script type="text/javascript" src="ui.js"></script>
|
<script type="text/javascript" src="ui.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class="flora">
|
<body class="flora">
|
||||||
|
|
||||||
<h1 id="header">jQuery UI Test Suite</h1>
|
<h1 id="header">jQuery UI Test Suite</h1>
|
||||||
<h2 id="banner"></h2>
|
<h2 id="banner"></h2>
|
||||||
<h2 id="userAgent"></h2>
|
<h2 id="userAgent"></h2>
|
||||||
|
|
||||||
<ol id="tests"></ol>
|
<ol id="tests"></ol>
|
||||||
|
|
||||||
<div id="main" style="position: absolute; top: -10000px; border: 1px solid black; padding: 10px; margin: 10px;">
|
<div id="main" style="position: absolute; top: -10000px; border: 1px solid black; padding: 10px; margin: 10px;">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
72
tests/ui.js
72
tests/ui.js
@ -1,36 +1,36 @@
|
|||||||
/*
|
/*
|
||||||
* common UI unit tests
|
* common UI unit tests
|
||||||
*/
|
*/
|
||||||
(function($) {
|
(function($) {
|
||||||
|
|
||||||
var plugins = [
|
var plugins = [
|
||||||
"accordion",
|
"accordion",
|
||||||
"datepicker",
|
"datepicker",
|
||||||
"dialog",
|
"dialog",
|
||||||
"draggable",
|
"draggable",
|
||||||
"droppable",
|
"droppable",
|
||||||
"progressbar",
|
"progressbar",
|
||||||
"resizable",
|
"resizable",
|
||||||
"selectable",
|
"selectable",
|
||||||
"slider",
|
"slider",
|
||||||
"sortable",
|
"sortable",
|
||||||
"tabs"
|
"tabs"
|
||||||
];
|
];
|
||||||
|
|
||||||
module("version");
|
module("version");
|
||||||
|
|
||||||
test("core", function() {
|
test("core", function() {
|
||||||
equals($.ui.version, "@VERSION", "$.ui.version");
|
equals($.ui.version, "@VERSION", "$.ui.version");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(plugins).each(function() {
|
$(plugins).each(function() {
|
||||||
var pluginName = this;
|
var pluginName = this;
|
||||||
test(pluginName, function() {
|
test(pluginName, function() {
|
||||||
if ($.ui[pluginName])
|
if ($.ui[pluginName])
|
||||||
equals($.ui[pluginName].version, "@VERSION", "$.ui." + pluginName + ".version");
|
equals($.ui[pluginName].version, "@VERSION", "$.ui." + pluginName + ".version");
|
||||||
else
|
else
|
||||||
ok(false, "$.ui." + pluginName + " undefined.");
|
ok(false, "$.ui." + pluginName + " undefined.");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
||||||
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
||||||
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
||||||
jQuery(function($) {
|
jQuery(function($) {
|
||||||
$.datepicker.regional['fa'] = {
|
$.datepicker.regional['fa'] = {
|
||||||
clearText: 'حذف تاريخ', clearStatus: 'پاک کردن تاريخ جاري',
|
clearText: 'حذف تاريخ', clearStatus: 'پاک کردن تاريخ جاري',
|
||||||
closeText: 'بستن', closeStatus: 'بستن بدون اعمال تغييرات',
|
closeText: 'بستن', closeStatus: 'بستن بدون اعمال تغييرات',
|
||||||
prevText: '<قبلي', prevStatus: 'نمايش ماه قبل',
|
prevText: '<قبلي', prevStatus: 'نمايش ماه قبل',
|
||||||
prevBigText: '<<', prevBigStatus: '',
|
prevBigText: '<<', prevBigStatus: '',
|
||||||
nextText: 'بعدي>', nextStatus: 'نمايش ماه بعد',
|
nextText: 'بعدي>', nextStatus: 'نمايش ماه بعد',
|
||||||
nextBigText: '>>', nextBigStatus: '',
|
nextBigText: '>>', nextBigStatus: '',
|
||||||
currentText: 'امروز', currentStatus: 'نمايش ماه جاري',
|
currentText: 'امروز', currentStatus: 'نمايش ماه جاري',
|
||||||
monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور',
|
monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور',
|
||||||
'مهر','آبان','آذر','دي','بهمن','اسفند'],
|
'مهر','آبان','آذر','دي','بهمن','اسفند'],
|
||||||
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
||||||
monthStatus: 'نمايش ماه متفاوت', yearStatus: 'نمايش سال متفاوت',
|
monthStatus: 'نمايش ماه متفاوت', yearStatus: 'نمايش سال متفاوت',
|
||||||
weekHeader: 'هف', weekStatus: 'هفتهِ سال',
|
weekHeader: 'هف', weekStatus: 'هفتهِ سال',
|
||||||
dayNames: ['يکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
|
dayNames: ['يکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
|
||||||
dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'],
|
dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'],
|
||||||
dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'],
|
dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'],
|
||||||
dayStatus: 'قبول DD بعنوان اولين روز هفته', dateStatus: 'انتخاب D, M d',
|
dayStatus: 'قبول DD بعنوان اولين روز هفته', dateStatus: 'انتخاب D, M d',
|
||||||
dateFormat: 'yy/mm/dd', firstDay: 6,
|
dateFormat: 'yy/mm/dd', firstDay: 6,
|
||||||
initStatus: 'انتخاب تاريخ', isRTL: true};
|
initStatus: 'انتخاب تاريخ', isRTL: true};
|
||||||
$.datepicker.setDefaults($.datepicker.regional['fa']);
|
$.datepicker.setDefaults($.datepicker.regional['fa']);
|
||||||
});
|
});
|
@ -1,25 +1,25 @@
|
|||||||
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
||||||
/* Written by Flakron Bytyqi (flakron@gmail.com). */
|
/* Written by Flakron Bytyqi (flakron@gmail.com). */
|
||||||
jQuery(function($){
|
jQuery(function($){
|
||||||
$.datepicker.regional['sq'] = {
|
$.datepicker.regional['sq'] = {
|
||||||
clearText: 'fshije', clearStatus: 'fshije datën aktuale',
|
clearText: 'fshije', clearStatus: 'fshije datën aktuale',
|
||||||
closeText: 'mbylle', closeStatus: 'mbylle pa ndryshime',
|
closeText: 'mbylle', closeStatus: 'mbylle pa ndryshime',
|
||||||
prevText: '<mbrapa', prevStatus: 'trego muajin e fundit',
|
prevText: '<mbrapa', prevStatus: 'trego muajin e fundit',
|
||||||
prevBigText: '<<', prevBigStatus: '',
|
prevBigText: '<<', prevBigStatus: '',
|
||||||
nextText: 'Përpara>', nextStatus: 'trego muajin tjetër',
|
nextText: 'Përpara>', nextStatus: 'trego muajin tjetër',
|
||||||
nextBigText: '>>', nextBigStatus: '',
|
nextBigText: '>>', nextBigStatus: '',
|
||||||
currentText: 'sot', currentStatus: '',
|
currentText: 'sot', currentStatus: '',
|
||||||
monthNames: ['Janar','Shkurt','Mars','Pril','Maj','Qershor',
|
monthNames: ['Janar','Shkurt','Mars','Pril','Maj','Qershor',
|
||||||
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
|
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
|
||||||
monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer',
|
monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer',
|
||||||
'Kor','Gus','Sht','Tet','Nën','Dhj'],
|
'Kor','Gus','Sht','Tet','Nën','Dhj'],
|
||||||
monthStatus: 'trego muajin tjetër', yearStatus: 'trego tjetër vit',
|
monthStatus: 'trego muajin tjetër', yearStatus: 'trego tjetër vit',
|
||||||
weekHeader: 'Ja', weekStatus: 'Java e muajit',
|
weekHeader: 'Ja', weekStatus: 'Java e muajit',
|
||||||
dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'],
|
dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'],
|
||||||
dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
||||||
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
||||||
dayStatus: 'Vendose DD si ditë të parë të javës', dateStatus: '\'Zgjedh\' D, M d',
|
dayStatus: 'Vendose DD si ditë të parë të javës', dateStatus: '\'Zgjedh\' D, M d',
|
||||||
dateFormat: 'dd.mm.yy', firstDay: 1,
|
dateFormat: 'dd.mm.yy', firstDay: 1,
|
||||||
initStatus: 'Zgjedhe një datë', isRTL: false};
|
initStatus: 'Zgjedhe një datë', isRTL: false};
|
||||||
$.datepicker.setDefaults($.datepicker.regional['sq']);
|
$.datepicker.setDefaults($.datepicker.regional['sq']);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user