This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bluetoothctl | |
| $ agent on | |
| $ scan on | |
| [bluetooth]# help | |
| Available commands: | |
| list List available controllers | |
| show [ctrl] Controller information | |
| select <ctrl> Select default controller | |
| devices List available devices |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" | |
| jcr:primaryType="cq:EditConfig"> | |
| <cq:listeners | |
| jcr:primaryType="cq:EditListenersConfig" | |
| afteredit="REFRESH_PAGE" | |
| afterinsert="REFRESH_PAGE" | |
| afterchildinsert="REFRESH_PAGE"/> | |
| </jcr:root> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cta | |
| jcr:primaryType="nt:unstructured" | |
| jcr:title="CTA" | |
| sling:resourceType="granite/ui/components/foundation/include" | |
| path="project/components/content/sample-component/cq:dialog/content/items/ctaMultifield" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cta | |
| jcr:primaryType="nt:unstructured" | |
| jcr:title="CTA" | |
| sling:resourceType="granite/ui/components/foundation/section"> | |
| <layout | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns" | |
| margin="{Boolean}false"/> | |
| <items jcr:primaryType="nt:unstructured"> | |
| <column |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <images | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="granite/ui/components/coral/foundation/form/multifield" | |
| typeHint="String[]" | |
| fieldLabel="" | |
| fieldDescription=""> | |
| <field | |
| jcr:primaryType="nt:unstructured" | |
| sling:resourceType="granite/ui/components/foundation/form/pathbrowser" | |
| fieldLabel="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Setting up IDE (Eclipse, Intellij, VSCode) | |
| https://helpx.adobe.com/experience-manager/kt/platform-repository/using/local-aem-dev-environment-article-setup.html#setup-integrated-env |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Throttle Handler | |
| * @param {function} callback | |
| * @param {number} limit (ms) | |
| */ | |
| export function throttle (callback, limit = 100) { | |
| let wait = false; | |
| return function throttleReturn(...args) { | |
| if (!wait) { | |
| callback.apply(null, ...args); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
| jcr:primaryType="cq:Component" | |
| jcr:title="Rich Text" | |
| sling:resourceSuperType="core/wcm/components/text/v2/text" | |
| componentGroup="General"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # found on blogt post http://keysandstrokes.info/touch-ui-rich-text-editor-add-inline-plugins/ | |
| "toolbar": [ | |
| "format#bold", | |
| "format#italic", | |
| "format#underline", | |
| "subsuperscript#subscript", | |
| "subsuperscript#superscript", | |
| "-", | |
| "misctools#specialchars", |
OlderNewer