Home
last modified time | relevance | path

Searched refs:dialog (Results 1 – 25 of 472) sorted by relevance

12345678910>>...19

/plugin/crypto/js/
Dtoggle-encryption-dialog.js43 var dialog = this;
45 if (dialog.tag.className == "encrypted") {
46 dialog.button.innerHTML = '<img src="' + DOKU_BASE + "lib/plugins/crypto/lock_break.png" + '"/>';
47 dialog.tag.className = "decrypted";
48 if (dialog.tag.attributes["inline"].nodeValue == "true") {
49 dialog.tag.innerHTML = dialog.decrypted;
51 dialog.tag.innerHTML = '<pre>' + dialog.decrypted + '</pre>';
54 dialog.button.innerHTML = '<img src="' + DOKU_BASE + "lib/plugins/crypto/lock.png" + '"/>';
55 dialog.tag.className = "encrypted";
56 dialog.tag.innerHTML = dialog.encrypted;
[all …]
Dencrypt-dialog.js14 this.dialog = document.createElement('div');
15 this.dialog.id = 'encrypt_dialog';
16 this.dialog.className = 'picker cryptodialog';
17 this.dialog.style.top = (findPosY(textArea)+20)+'px';
18 this.dialog.style.left = (findPosX(textArea)+80)+'px';
20 this.textArea.form.parentNode.appendChild(this.dialog);
22 this.dialog.innerHTML =
44 drag.attach(this.dialog, $('encrypt_dialog_header'));
45 var dialog = this;
85 dialog.textArea.focus();
[all …]
Ddecrypt-dialog.js41 var dialog = this;
68 dialog.textArea.focus();
69 dialog.textArea.form.parentNode.removeChild(dialog.div);
70 dialog.visible = false;
71 dialog.div = null;
72 dialog.textArea = null;
76 var selection = getSelection(dialog.textArea);
78 dialog.sack.setVar("call", "crypto_decrypt");
79 dialog.sack.setVar("secret", escape($('decrypt_dialog_password').value));
80 dialog.sack.setVar("data", getSelection(dialog.textArea).getText());
[all …]
/plugin/ckgdoku/ckeditor/plugins/fontAssist/
Dplugin.js.unc11 // Create an editor command that stores the dialog initialization command.
41 // Add a new dialog window definition containing all UI elements and listeners.
42 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
43 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
44 CKEDITOR.dialog.add( 'fontAssistDialog', function( editor )
88 var ckgedit_getEID = function (dialog,page,el) {
89 var InputId = dialog.getContentElement(page,el).getInputElement().$.id;
94 var display_fontOpen = function(dialog){
95 var a = ckgedit_getEID(dialog,'general','alert');
108 var setColor = function(dialog,ui_el) {
[all …]
/plugin/ckgedit/ckeditor/plugins/fontAssist/
Dplugin.js.unc11 // Create an editor command that stores the dialog initialization command.
41 // Add a new dialog window definition containing all UI elements and listeners.
42 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
43 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
44 CKEDITOR.dialog.add( 'fontAssistDialog', function( editor )
88 var ckgedit_getEID = function (dialog,page,el) {
89 var InputId = dialog.getContentElement(page,el).getInputElement().$.id;
94 var display_fontOpen = function(dialog){
95 var a = ckgedit_getEID(dialog,'general','alert');
108 var setColor = function(dialog,ui_el) {
[all …]
/plugin/golocal/
Dscript.js4 #dialog;
25 this.#dialog = this.createDialog();
27 parent.appendChild(this.#dialog);
30 this.#dialog.showModal();
39 const dialog = document.createElement('dialog');
40 dialog.className = 'golocal-dialog';
43 dialog.appendChild(main);
58 dialog.appendChild(footer);
78 dialog.addEventListener('close', this.onClose.bind(this));
79 return dialog;
[all …]
/plugin/aichat/script/
DAIChatButton.js3 #dialog = null; field in AIChatButton
32 this.#dialog = this.#root.querySelector('dialog');
39 this.#dialog.querySelector('button.fs').addEventListener('click', function() {
40 this.#dialog.classList.toggle('fullscreen');
51 … this.#dialog.querySelector('header h1').textContent = this.getAttribute('label') || 'AI Chat';
142 if (this.#dialog.open) {
143 this.#dialog.close();
145 this.#dialog.show();
/plugin/ckgedit/ckeditor/plugins/footnote/
Dplugin.js.unc9 // Create an editor command that stores the dialog initialization command.
44 // Add a new dialog window definition containing all UI elements and listeners.
45 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
46 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
47 CKEDITOR.dialog.add( 'footnoteDialog', function( editor )
52 // Basic properties of the dialog window: title, minimum size.
53 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
66 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.content.html
70 // Definition of the Settings dialog window tab (page) with its id, label and contents.
71 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.contentDefinition.html
[all …]
/plugin/ckgdoku/ckeditor/plugins/footnote/
Dplugin.js.unc9 // Create an editor command that stores the dialog initialization command.
44 // Add a new dialog window definition containing all UI elements and listeners.
45 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
46 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
47 CKEDITOR.dialog.add( 'footnoteDialog', function( editor )
52 // Basic properties of the dialog window: title, minimum size.
53 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
66 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.content.html
70 // Definition of the Settings dialog window tab (page) with its id, label and contents.
71 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.contentDefinition.html
[all …]
/plugin/searchjump/
Dscript.js4 dialog: null, property
14 sjump.dialog = document.createElement('div');
15 sjump.dialog.id = 'search__jump';
36 sjump.dialog.appendChild(prev);
37 sjump.dialog.appendChild(close);
38 sjump.dialog.appendChild(next);
45 jQuery(sjump.dialog).css('left', $page.offset().left + 'px');
48 document.body.appendChild(sjump.dialog);
68 jQuery(sjump.dialog).css('top', jQuery(sjump.$found[sjump.current]).offset().top + 'px');
85 document.body.removeChild(sjump.dialog);
/plugin/tagging/script/
H A Dadmin.js53 const actionData = actionDialog.dialog('option', 'data');
65 actionDialog.dialog('close');
75 const actionDialog = jQuery("#tagging__action-dialog").dialog({
95 const taggedPagesDialog = jQuery("#tagging__taggedpages-dialog").dialog({
114 const actionData = actionDialog.dialog('option', 'data');
144 const $data = taggedPagesDialog.dialog('option', 'data');
159 actionDialog.dialog('option', { data: jQuery(this).data() });
160 actionDialog.dialog('open');
170 taggedPagesDialog.dialog('option', { data: jQuery(this).data() });
171 taggedPagesDialog.dialog('open');
/plugin/ckgdoku/ckeditor/plugins/geshi/dialogs/
Dgeshi.js.unc5 * The abbr plugin dialog window definition.
11 // Our dialog definition.
12 CKEDITOR.dialog.add( 'geshiDialog', function( editor ) {
69 // Basic properties of the dialog window: title, minimum size.
77 // Definition of the Basic Settings dialog tab (page).
91 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
154 var dialog = this;
155 geshi_dialog = dialog;
158 dialog.getContentElement( 'tab-basic', 'geshi' ).setValue( text );
162 // dialog.getContentElement( 'tab-basic', 'language' ).style='display:block';
[all …]
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
Dgeshi.js.unc5 * The abbr plugin dialog window definition.
11 // Our dialog definition.
12 CKEDITOR.dialog.add( 'geshiDialog', function( editor ) {
70 // Basic properties of the dialog window: title, minimum size.
78 // Definition of the Basic Settings dialog tab (page).
92 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
179 var dialog = this;
180 geshi_dialog = dialog;
183 dialog.getContentElement( 'tab-basic', 'geshi' ).setValue( text );
187 // dialog.getContentElement( 'tab-basic', 'language' ).style='display:block';
[all …]
/plugin/pagebuttons/
Dscript.js41 $dialog.dialog({
51 $dialog.dialog("close");
58 $dialog.dialog("close");
95 $dialog.dialog({
106 $dialog.dialog("close");
114 $dialog.dialog("close");
151 $dialog.dialog({
162 $dialog.dialog("close");
170 $dialog.dialog("close");
/plugin/timetrack/
Dscript.js20 jQuery( "#timetrack__dialog" ).dialog({title:LANG.plugins.timetrack['timetrack'],
29 jQuery("#timetrack__dialog").dialog("open");
144 if(data.dialog) {
146 jQuery("#timetrack__dialog > div").html(data.dialog);
155 jQuery("#timetrack__dialog").dialog({
157 …primary:'ui-icon-close'}, class: 'left-button' ,click: function() {jQuery(this).dialog('close');}},
165 jQuery("#timetrack__dialog").dialog({
167 … {text:LANG.plugins.timetrack['closeDialog'],click: function() {jQuery(this).dialog('close');}},
172 jQuery("#timetrack__dialog").dialog("open");
179 if(applyonly !== true) jQuery("#timetrack__dialog").dialog("close");
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
DDialogAction.php44 public function setDialog(Dialog $dialog) argument
46 $this->dialog = $dialog;
53 return $this->dialog;
/plugin/fckg/fckeditor/editor/dialog/fck_flash/
Dfck_flash.js24 var dialog = window.parent ; variable
25 var oEditor = dialog.InnerDialogLoaded() ;
34 dialog.AddTab( 'Info', oEditor.FCKLang.DlgInfoTab ) ;
37 dialog.AddTab( 'Upload', FCKLang.DlgLnkUpload ) ;
40 dialog.AddTab( 'Advanced', oEditor.FCKLang.DlgAdvancedTag ) ;
51 var oFakeImage = dialog.Selection.GetSelectedElement() ;
77 dialog.SetAutoSize( true ) ;
80 dialog.SetOkButton( true ) ;
121 dialog.SetSelectedTab( 'Info' ) ;
234 dialog.SetSelectedTab( 'Info' ) ;
/plugin/ckgdoku/ckeditor/plugins/wsc/dialogs/
Dwsc.js9 …a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=…
11 …"Synonyms"}};var J=function(b){var c,e,d;for(d in b){if(c=a.dialog.getContentElement(a.dialog._.cu…
12 …lizationComing[e])}},K=function(b){var c,e,d;for(d in b)c=a.dialog.getContentElement(a.dialog._.cu…
14dialog._.contents[b].Content,b)};a.setHeightBannerFrame=function(){var b=a.dialog.getContentElemen…
15 "_"+a.dialog._.currentTabId).style.height="240px"};a.sendData=function(b){var c=b._.currentTabId,e=…
21dialog.getParentEditor().name;b=document.getElementById(b);var e=a.iframeNumber+"_"+a.dialog._.cur…
22 …Lang_outer__page"})}},M=function(b){var c,e=function(b){b=a.dialog.getContentElement(a.dialog._.cu…
23dialog.getContentElement(a.dialog._.currentTabId,b)||a.LocalizationButton[b].instance;b.enable();b…
24 (c("ChangeTo_button"),c("ChangeAll"));return b},O={iframeOnload:function(b){b=a.dialog._.currentTab…
26 …verlay.setDisable()},finish:function(b){delete b.id;N();b=a.dialog.getContentElement(a.dialog._.cu…
[all …]
/plugin/ckgedit/ckeditor/plugins/wsc/dialogs/
Dwsc.js9 …a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=…
11 …"Synonyms"}};var K=function(b){var d,c,e;for(e in b){if(d=a.dialog.getContentElement(a.dialog._.cu…
12 …lizationComing[c])}},L=function(b){var d,c,e;for(e in b)d=a.dialog.getContentElement(a.dialog._.cu…
14dialog._.contents[b].Content,b)};a.setHeightBannerFrame=function(){var b=a.dialog.getContentElemen…
15 "_"+a.dialog._.currentTabId).style.height="240px"};a.sendData=function(b){var d=b._.currentTabId,c=…
21dialog.getParentEditor().name;b=document.getElementById(b);var c,e=a.iframeNumber+"_"+a.dialog._.c…
22 …Lang_outer__page"})}},N=function(b){var d,c=function(b){b=a.dialog.getContentElement(a.dialog._.cu…
23dialog.getContentElement(a.dialog._.currentTabId,b)||a.LocalizationButton[b].instance;b.enable();b…
24 (d("ChangeTo_button"),d("ChangeAll"));return b},P={iframeOnload:function(b){b=a.dialog._.currentTab…
26 …verlay.setDisable()},finish:function(b){delete b.id;O();b=a.dialog.getContentElement(a.dialog._.cu…
[all …]
/plugin/ckgdoku/ckeditor/plugins/image/dialogs/
Dimage.js.unc25 dialog = this.getDialog(),
29 switchLockRatio( dialog, false ); // Unlock.
34 if ( dialog.lockRatio ) {
35 var oImageOriginal = dialog.originalElement;
41 dialog.setValueOf( 'info', 'txtWidth', value );
47 dialog.setValueOf( 'info', 'txtHeight', value );
51 updatePreview( dialog );
54 var updatePreview = function( dialog ) {
56 if ( !dialog.originalElement || !dialog.preview )
60 dialog.commitContent( PREVIEW, dialog.preview );
[all …]
/plugin/ckgedit/ckeditor/plugins/image/dialogs/
Dimage.js.unc26 dialog = this.getDialog(),
30 switchLockRatio( dialog, false ); // Unlock.
35 if ( dialog.lockRatio ) {
36 var oImageOriginal = dialog.originalElement;
42 dialog.setValueOf( 'info', 'txtWidth', value );
48 dialog.setValueOf( 'info', 'txtHeight', value );
52 updatePreview( dialog );
55 var updatePreview = function( dialog ) {
57 if ( !dialog.originalElement || !dialog.preview )
61 dialog.commitContent( PREVIEW, dialog.preview );
[all …]
/plugin/ckgedit/ckeditor/plugins/tags/dialogs/
Dtags.js.unc1 CKEDITOR.dialog.add( 'tagsDialog', function ( editor )
109 var dialog = this;
114 var dialog = this;
116 … selected += dialog.getValueOf('tab-basic',existingTags[i].id) ? existingTags[i].id+' ' : '';
118 …selected += dialog.getValueOf('tab-basic','user_def_box') ? dialog.getValueOf('tab-basic','user_de…
119 which = dialog.getValueOf('tab-basic','which') ;
136 var dialog = this;
141 …existing += dialog.getValueOf('tab-basic',existingTags[i].id) ? existingTags[i].id+' ' : ''; // …
153 jQuery("table[class*='dialog'] :checkbox[class*='cke']").each(function( index ) {
174 dialog.setValueOf('tab-basic','user_def_box',1) ;
[all …]
/plugin/ckgdoku/ckeditor/plugins/tags/dialogs/
Dtags.js1dialog.add("tagsDialog",function(editor){var existingTags={};var lang=editor.lang.tags;var generat…
/plugin/ckgedit/ckeditor/plugins/note/dialogs/
Dnote.js.unc1 CKEDITOR.dialog.add( 'noteDialog', function( editor ) {
28 // Invoked when the dialog is loaded.
40 var dialog = this;
43 // note.setAttribute( 'title', dialog.getValueOf( 'tab-basic', 'note' ) );
46 var noteTypeValue = dialog.getValueOf( 'tab-basic', 'notetype' );
56 var noteText = this.text ? this.text: dialog.getValueOf( 'tab-basic', 'note' );
/plugin/feedback/
Dscript.js23 $dialog.dialog({
32 $dialog.dialog("close");
44 $dialog.dialog('option', 'buttons',
49 $dialog.dialog("close");

12345678910>>...19