| /plugin/diagramsnet/lib/js/diagramly/ |
| D | DevTools.js | 12 var tip = graphGetTooltipForCell.apply(this, arguments); 15 tip += ((tip.length > 0) ? '<br>' : '') + 'id=' + cell.id + '<br>'; 21 … tip += 'source=' + parseFloat(geo.sourcePoint.x) + ',' + parseFloat(geo.sourcePoint.y) + '<br>'; 26 … tip += 'target=' + parseFloat(geo.targetPoint.x) + ',' + parseFloat(geo.targetPoint.y) + '<br>'; 33 tip += 'abspoints(' + state.absolutePoints.length + ')='; 37 … tip += parseFloat(state.absolutePoints[i].x) + ',' + parseFloat(state.absolutePoints[i].y) + ';'; 40 tip += '<br>'; 44 tip += 'points(' + geo.points.length + ')='; 48 tip += parseFloat(geo.points[i].x) + ',' + parseFloat(geo.points[i].y) + ';'; 56 tip += 'x/y=' + parseFloat(geo.x) + ',' + parseFloat(geo.y) + '<br>' + [all …]
|
| /plugin/adhocwrap/ |
| H A D | all.less | 8 .outline > *, .box > *, .info > *, .tip > *, .important > *, 27 .info, .tip, .important, .alert, .help, .download, .todo { 48 .tip { 87 .tip h1, .tip h2, .tip h3, .tip h4, .tip h5, .tip h6, 97 div.info, div.tip, div.important, div.alert, div.help, div.download, div.todo, 98 …article.info, article.tip, article.important, article.alert, article.help, article.download, artic… 99 aside.info, aside.tip, aside.important, aside.alert, aside.help, aside.download, aside.todo, 100 …section.info, section.tip, section.important, section.alert, section.help, section.download, secti… 101 …figure.info, figure.tip, figure.important, figure.alert, figure.help, figure.download, figure.todo… 106 div.info, div.tip, div.important, div.alert, div.help, div.download, div.todo, [all …]
|
| /plugin/character/ |
| D | syntax.php | 118 $tip = "unicode code point"; 122 $tip = "hexadecimal escape sequence"; 126 $tip = 'code point escape sequence'; 129 $tip = "decimal HTML entity"; 132 $tip = "hexadecimal HTML entity"; 135 $tip = "URL encoding"; 138 $tip = 'character literal'; 141 $tip = 'escape sequence'; 147 .$tip.'</span>'
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/ |
| D | GraphEditor.java | 617 String tip = "<html>"; in getToolTipForCell() local 623 tip += "points={"; in getToolTipForCell() 636 tip += "[x=" + numberFormat.format(point.getX()) in getToolTipForCell() 641 tip = tip.substring(0, tip.length() - 1); in getToolTipForCell() 645 tip += "}<br>"; in getToolTipForCell() 646 tip += "absPoints={"; in getToolTipForCell() 654 tip += "[x=" + numberFormat.format(point.getX()) in getToolTipForCell() 659 tip = tip.substring(0, tip.length() - 1); in getToolTipForCell() 662 tip += "}"; in getToolTipForCell() 666 tip += "geo=["; in getToolTipForCell() [all …]
|
| D | GraphEditor.java.bak | 488 String tip = "<html>"; 494 tip += "points={"; 507 tip += "[x=" + numberFormat.format(point.getX()) 512 tip = tip.substring(0, tip.length() - 1); 516 tip += "}<br>"; 517 tip += "absPoints={"; 525 tip += "[x=" + numberFormat.format(point.getX()) 530 tip = tip.substring(0, tip.length() - 1); 533 tip += "}"; 537 tip += "geo=["; [all …]
|
| /plugin/tooltip/ |
| D | style.css | 26 div.dokuwiki span.tooltip_default .tip { 34 div.dokuwiki span.tooltip_default:hover .tip { 67 div.dokuwiki span.tooltip_winlike .tip { 75 div.dokuwiki span.tooltip_winlike:hover .tip { 111 span.tooltip_inline .tip { 119 span.tooltip_inline:hover .tip {
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
| D | spaceless.rst | 4 .. tip:: 25 .. tip:: 30 .. tip:: 37 .. tip::
|
| /plugin/autotooltip/ |
| H A D | syntax.php | 88 $tip = []; 92 preg_match('/<tip>([\s\S]+)<\/tip>/', $inner, $tip); 99 $data['tip'] = $tip[1] ?? null;
|
| /plugin/npd/ |
| D | helper.php | 55 $tip = htmlspecialchars($label); 92 $ret .= 'title="'.$tip.'" ';
|
| /plugin/new_page_dialog/ |
| D | helper.php | 46 $tip = htmlspecialchars($label); 85 $ret .= 'title="'.$tip.'" ';
|
| /plugin/bootswrapper/exe/help/ |
| D | callout.txt | 106 <callout type="tip" icon="true"> 108 This is a tip callout (alias of ''warning''). 113 <callout type="tip" icon="true"> [...] </callout> 146 … ''info'' ''warning'' ''danger'' (''question'' ''tip'') | Type of callout \\ \\ ''question'' and …
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
| D | spaceless.rst | 44 .. tip:: 49 .. tip:: 56 .. tip::
|
| /plugin/annotate/ |
| D | anno.php | 114 $tip = '<span class="' . $xhtml . ' anno-dclk-over ui-widget-content">'; 117 $tip = '<span class="annotation ui-widget-content '. $xhtml . '">'; 119 $renderer->doc .= $tip;
|
| /plugin/ckgedit/ckeditor/plugins/note/lang/ |
| D | en.js | 7 tip: 'Tip', property
|
| D | de.js | 7 tip: 'Hinweis', property
|
| /plugin/note/ |
| D | README.md | 12 You can use the note keywords `important`, `warning` and `tip` to change the look of note as well 17 <note tip>tip</note>
|
| /plugin/annotations/ |
| H A D | script.js | 1414 var tip = document.getElementById('ann-tooltip'); 1415 if (tip && tip.contains(e.target)) { 1479 var tip = document.createElement('div'); 1480 tip.id = 'ann-tooltip'; 1481 tip.className = CLS_TOOLTIP; 1504 tip.appendChild(btn); 1506 document.body.appendChild(tip); 1511 tip.style.top = (rect.bottom + scrollTop + 6) + 'px'; 1512 tip.style.left = (rect.left + scrollLeft) + 'px'; 1519 var tip = document.getElementById('ann-tooltip'); [all …]
|
| /plugin/ckgdoku/ckeditor/plugins/wrap/lang/ |
| D | ar.js | 5 tip: 'مربع تلميح', property
|
| D | fa.js | 5 tip: 'کادر نکته', property
|
| D | zh.js | 6 tip: '提示框', property
|
| D | hu.js | 6 tip: 'tippdoboz', property
|
| D | de-informal.js | 6 tip: 'Tip-Box', property
|
| /plugin/ckgedit/ckeditor/plugins/wrap/lang/ |
| D | ar.js | 5 tip: 'مربع تلميح', property
|
| D | fa.js | 5 tip: 'کادر نکته', property
|
| D | eo.js | 6 tip: 'konsil-skatolo', property
|