Home
last modified time | relevance | path

Searched refs:picker (Results 1 – 25 of 91) sorted by relevance

1234

/plugin/bpmnio/_test/
H A Daction_plugin_bpmnio_toolbar.test.php33 $picker = $data[0];
34 $this->assertEquals('picker', $picker['type']);
35 $this->assertArrayHasKey('list', $picker);
36 $this->assertCount(2, $picker['list'], 'Picker should have BPMN and DMN entries');
39 $bpmn = $picker['list'][0];
46 $dmn = $picker['list'][1];
64 $picker = $data[0];
65 $this->assertStringContainsString('bpmnio/images/toolbar/', $picker['icon']);
66 $this->assertStringContainsString('bpmnio/images/toolbar/', $picker['list'][0]['icon']);
67 $this->assertStringContainsString('bpmnio/images/toolbar/', $picker['list'][1]['icon']);
/plugin/tindexmenu/
Dscript.js19 function indexmenu_createTocMenu(get,picker,btn) { argument
20 var toc_picker = $(picker);
22 toc_picker=indexmenu_createPicker(picker);
25 …irstChild, 'click',function (event) {event.stopPropagation();return indexmenu_showPicker(picker)});
32 function indexmenu_ajaxmenu(get,picker,btn,container,oncomplete) { argument
37 indx_list = picker;
39 if (!indexmenu_showPicker(picker,btn)) return;
73 var x = 3, y = 3, picker = $(pickerid);
74 if(picker.style.display == 'none'){
77 if (picker.id != 'picker_plugin_indexmenu') {
[all …]
/plugin/cellbg/
Dscript.js86 var picker = document.createElement('div');
87 picker.className = 'picker';
88 picker.id = p_id;
89 picker.style.position = 'absolute';
90 picker.style.display = 'none';
96 picker.appendChild(btn);
102 picker.appendChild(btn);
107 body.appendChild(picker); // attach the picker <div> to the page body
/plugin/cellbg2/
Dscript.js86 var picker = document.createElement('div');
87 picker.className = 'picker';
88 picker.id = p_id;
89 picker.style.position = 'absolute';
90 picker.style.display = 'none';
96 picker.appendChild(btn);
102 picker.appendChild(btn);
107 body.appendChild(picker); // attach the picker <div> to the page body
/plugin/fontello/
H A Dstyle.css1 div.picker.pk_fontello {
6 div.picker.pk_fontello button.fontello-picker-button {
13 div.picker.pk_fontello button.fontello-picker-button span.fontello-icon:before {
H A DREADME.md13 - Enable or disable icons for the editor toolbar picker in the admin panel
42 …n be enabled or disabled for the toolbar picker. This only controls which icons are offered in the…
/plugin/diagramsnet/lib/js/jscolor/
Djscolor.js529 delete mxJSColor.picker.owner;
530 document.getElementsByTagName('body')[0].removeChild(mxJSColor.picker.boxB);
535 if(!mxJSColor.picker) {
536 mxJSColor.picker = {
554 mxJSColor.picker.sld.appendChild(seg);
556 mxJSColor.picker.sldB.appendChild(mxJSColor.picker.sld);
557 mxJSColor.picker.box.appendChild(mxJSColor.picker.sldB);
558 mxJSColor.picker.box.appendChild(mxJSColor.picker.sldM);
559 mxJSColor.picker.padB.appendChild(mxJSColor.picker.pad);
560 mxJSColor.picker.box.appendChild(mxJSColor.picker.padB);
[all …]
/plugin/diagramsnet/lib/js/diagramly/
DDriveClient.js2052 var picker = pickers[name];
2054 if (picker == null || pickers[name + 'Token'] != _token)
2058 var view = new google.picker.DocsView(google.picker.ViewId.FOLDERS)
2062 var view2 = new google.picker.DocsView()
2065 var view21 = new google.picker.DocsView()
2069 picker = new google.picker.PickerBuilder()
2073 .enableFeature(google.picker.Feature.SUPPORT_DRIVES)
2077 .addView(google.picker.ViewId.RECENTLY_PICKED);
2080 return picker;
2098 if (data.action == google.picker.Action.PICKED)
[all …]
DMinimal.js721 mxUtils.isAncestorNode(this.editorUi.picker, elt))
723 var off = mxUtils.getOffset(this.editorUi.picker);
725 off.x += this.editorUi.picker.offsetWidth + 4;
1801 var picker = (urlParams['sketch'] == '1') ? document.createElement('div') : null;
1835 picker.style.left = '10px';
1836 picker.style.top = '60px';
1883 picker.style.display = '';
1884 picker.style.left = (ui.diagramContainer.offsetLeft -
1885 picker.offsetWidth - 4) + 'px';
1886 picker.style.top = ui.diagramContainer.offsetTop + 'px';
[all …]
/plugin/pgn4web/pgn4web/libs/jscolor/
Djscolor.js578 delete jscolor.picker.owner;
579 document.getElementsByTagName('body')[0].removeChild(jscolor.picker.boxB);
584 if(!jscolor.picker) {
585 jscolor.picker = {
603 jscolor.picker.sld.appendChild(seg);
605 jscolor.picker.sldB.appendChild(jscolor.picker.sld);
606 jscolor.picker.box.appendChild(jscolor.picker.sldB);
607 jscolor.picker.box.appendChild(jscolor.picker.sldM);
608 jscolor.picker.padB.appendChild(jscolor.picker.pad);
609 jscolor.picker.box.appendChild(jscolor.picker.padB);
[all …]
/plugin/charpicker/
DREADME.md4 Modify character selection in the Dokuwiki Secial Chars picker
6 …his plugin to add characters to the Special Chars picker or to delete unused characters from the p…
Dplugin.info.txt6 desc Adds characters to special chars picker
/plugin/colorpicker/
DREADME.md3 The color picker plugin puts a button in the DokuWiki edit toolbar for inserting a `<color>` tag.
19 The combination name will be used as the title (shown on mouseover) for the picker button.
Dplugin.info.txt6 desc This plugin shows a color picker in the editor toolbar. The allowed color combinations can be …
/plugin/scrapbook/
Dstyle.less1 div.picker.plugin-scrapbook {
/plugin/diagramsnet/lib/js/grapheditor/
DMenus.js938 function extendPicker(picker, rows, cols) argument
940 for (var i = picker.rows.length; i < rows; i++)
942 var row = picker.insertRow(i);
944 for (var j = 0; j < picker.rows[0].cells.length; j++)
950 for (var i = 0; i < picker.rows.length; i++)
952 var row = picker.rows[i];
1010 var picker = createPicker(5, 5);
1011 elt2.firstChild.appendChild(picker);
1027 extendPicker(picker, Math.min(20, row2.sectionRowIndex + ext), Math.min(20, td.cellIndex + ext));
1030 for (var i = 0; i < picker.rows.length; i++)
[all …]
/plugin/caption/
Dstyle.css22 div.picker.captionpicker {
/plugin/indexnumber/
Dplugin.info.txt6 desc This plugin shows a picker for index numbers in the editor toolbar. The allowed index names …
/plugin/typography/
DREADME.md10picker.png) ![font-size icon](https://raw.githubusercontent.com/ssahara/dw-plugin-typography/maste…
/plugin/indexmenu/scripts/
Dcontextmenu.js239 createTocMenu: function (get, picker, btn) { argument
240 var $toc_picker = jQuery('#' + picker);
242 $toc_picker = IndexmenuUtils.createPicker(picker, 'indexmenu_toc');
/plugin/aceeditor/
Dstyle.css3 .picker {
/plugin/howhard/
Dstyle.css41 div.picker.howhard_toolbar {
/plugin/edittable/less/
Deditor.less37 div.picker {
/plugin/combo/resources/theme/default/pages/templates/
H A Dapp-edit.css69 .toolbar button.toolbutton, .picker button.toolbutton, .picker button.pickerbutton {
/plugin/stars2/
Daction.php41 'type' => 'picker',

1234