mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
887422e56f
git-svn-id: http://svn.automattic.com/wordpress/trunk@2763 1a063a9b-81f0-0310-95a4-ce76da25c4cd
44 lines
2.2 KiB
JavaScript
44 lines
2.2 KiB
JavaScript
|
|
//initialisation function
|
|
addLoadEvent( function()
|
|
{
|
|
//initialise the docking boxes manager
|
|
var manager = new dbxManager('postmeta'); //session ID [/-_a-zA-Z0-9/]
|
|
|
|
|
|
//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']
|
|
'open', // word for "open", as in "open this box"
|
|
'close', // word for "close", as in "close this box"
|
|
'click-down and drag to move this box', // sentence for "move this box" by mouse
|
|
'click to %toggle% this box', // pattern-match sentence for "(open|close) this box" by mouse
|
|
'use the arrow keys to move this box', // sentence for "move this box" by keyboard
|
|
', or press the enter key to %toggle% it', // pattern-match sentence-fragment for "(open|close) this box" by keyboard
|
|
'%mytitle% [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
|
|
);
|
|
|
|
var advanced = new dbxGroup(
|
|
'advancedstuff', // container ID [/-_a-zA-Z0-9/]
|
|
'vertical', // orientation ['vertical'|'horizontal']
|
|
'10', // drag threshold ['n' pixels]
|
|
'yes', // 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']
|
|
'open', // word for "open", as in "open this box"
|
|
'close', // word for "close", as in "close this box"
|
|
'click-down and drag to move this box', // sentence for "move this box" by mouse
|
|
'click to %toggle% this box', // pattern-match sentence for "(open|close) this box" by mouse
|
|
'use the arrow keys to move this box', // sentence for "move this box" by keyboard
|
|
', or press the enter key to %toggle% it', // pattern-match sentence-fragment for "(open|close) this box" by keyboard
|
|
'%mytitle% [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
|
|
);
|
|
});
|