Lint fixes

pull/132/head
cagataycivici 2019-12-26 21:30:51 +03:00
parent d3a3e0fe0e
commit 96f7147db8
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
<h3>Focus and Blur</h3> <h3>Focus and Blur</h3>
<InputText type="text" placeholder="Focus" v-tooltip.bottom.focus="'Enter your username'" /> <InputText type="text" placeholder="Focus" v-tooltip.bottom.focus="'Enter your username'" />
<h3>Button</h3> <h3>Button</h3>
<Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" /> <Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" />
</div> </div>

View File

@ -22,7 +22,7 @@ directives: {
<template v-pre> <template v-pre>
&lt;InputText type="text" v-tooltip="'Enter your username'" /&gt; &lt;InputText type="text" v-tooltip="'Enter your username'" /&gt;
</template> </template>
</CodeHighlight> </CodeHighlight>
<h3>Positions</h3> <h3>Positions</h3>
<p>There are four choices to position the tooltip, default value is "right" and alternatives are "top", "bottom", "left". Position is specified using a modifier.</p> <p>There are four choices to position the tooltip, default value is "right" and alternatives are "top", "bottom", "left". Position is specified using a modifier.</p>
@ -44,7 +44,7 @@ directives: {
</CodeHighlight> </CodeHighlight>
<h3>Modifiers</h3> <h3>Modifiers</h3>
<p>As seen in positions and event sections, tooltip is configured via modifiers that can be chained. Tooltip below, <p>As seen in positions and event sections, tooltip is configured via modifiers that can be chained. Tooltip below,
gets displayed at the top of the input at focus event. gets displayed at the top of the input at focus event.
</p> </p>
<CodeHighlight> <CodeHighlight>