summaryrefslogtreecommitdiffstats
path: root/wp-admin/dbx-admin-key.js
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-09 15:17:25 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-09 15:17:25 +0000
commit492aa4ee7086ed94cb2f37a2bce3b52905841659 (patch)
tree825b6d0ae66246bae7a65c1f610a65b59789a6b5 /wp-admin/dbx-admin-key.js
parent359223a4711934ea6ec20e4c7613832e1f1132b5 (diff)
downloadwordpress-mu-492aa4ee7086ed94cb2f37a2bce3b52905841659.tar.gz
wordpress-mu-492aa4ee7086ed94cb2f37a2bce3b52905841659.tar.xz
wordpress-mu-492aa4ee7086ed94cb2f37a2bce3b52905841659.zip
WP Merge to rev 5007
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@909 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/dbx-admin-key.js')
-rw-r--r--wp-admin/dbx-admin-key.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/wp-admin/dbx-admin-key.js b/wp-admin/dbx-admin-key.js
new file mode 100644
index 0000000..9ea666c
--- /dev/null
+++ b/wp-admin/dbx-admin-key.js
@@ -0,0 +1,47 @@
+addLoadEvent( function() {var manager = new dbxManager( dbxL10n.mananger );} );
+
+addLoadEvent( function()
+{
+ //create new docking boxes group
+ var meta = new dbxGroup(
+ 'grabit', // container ID [/-_a-zA-Z0-9/]
+ 'vertical', // orientation ['vertical'|'horizontal']
+ '10', // drag threshold ['n' pixels]
+ 'no', // restrict drag movement to container axis ['yes'|'no']
+ '10', // animate re-ordering [frames per transition, or '0' for no effect]
+ 'yes', // include open/close toggle buttons ['yes'|'no']
+ 'closed', // default state ['open'|'closed']
+ dbxL10n.open, // word for "open", as in "open this box"
+ dbxL10n.close, // word for "close", as in "close this box"
+ dbxL10n.moveMouse, // sentence for "move this box" by mouse
+ dbxL10n.toggleMouse, // pattern-match sentence for "(open|close) this box" by mouse
+ dbxL10n.moveKey, // sentence for "move this box" by keyboard
+ dbxL10n.toggleKey, // pattern-match sentence-fragment for "(open|close) this box" by keyboard
+ '%mytitle% [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
+ );
+
+ // Boxes are closed by default. Open the Category box if the cookie isn't already set.
+ var catdiv = document.getElementById('categorydiv');
+ if ( catdiv ) {
+ var button = catdiv.getElementsByTagName('A')[0];
+ if ( dbx.cookiestate == null && /dbx\-toggle\-closed/.test(button.className) )
+ meta.toggleBoxState(button, true);
+ }
+
+ var advanced = new dbxGroup(
+ 'advancedstuff',
+ 'vertical',
+ '10',
+ 'yes', // restrict drag movement to container axis ['yes'|'no']
+ '10',
+ 'yes',
+ 'closed',
+ dbxL10n.open,
+ dbxL10n.close,
+ dbxL10n.moveMouse,
+ dbxL10n.toggleMouse,
+ dbxL10n.moveKey,
+ dbxL10n.toggleKey,
+ '%mytitle% [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
+ );
+});