Skip to content

Commit e17bb0a

Browse files
Fixed tabs to spaces
1 parent 2caca06 commit e17bb0a

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ The default key combination to trigger the easter egg is the [Konami Code](https
195195

196196
```html
197197
<EasterEggComponent
198-
:withBus"true"
199-
type="keydown"
200-
@callback="callbackEvent('using-component')"
198+
:withBus"true"
199+
type="keydown"
200+
@callback="callbackEvent('using-component')"
201201
/>
202202

203203
<script>
@@ -219,8 +219,8 @@ export default {
219219

220220
```html
221221
<EasterEggComponent
222-
type="keydown"
223-
@callback="callbackEvent('using-component')"
222+
type="keydown"
223+
@callback="callbackEvent('using-component')"
224224
/>
225225

226226
<script>
@@ -238,8 +238,8 @@ export default {
238238

239239
```html
240240
<EasterEggComponent
241-
type="keydown"
242-
@triggered="triggeredEvent('using-component')"
241+
type="keydown"
242+
@triggered="triggeredEvent('using-component')"
243243
/>
244244

245245
<script>
@@ -262,8 +262,8 @@ When using `dblclick` the pattern will only work with one double click. Ex. patt
262262

263263
```html
264264
<EasterEggComponent
265-
type="click"
266-
@callback="callbackEvent('using-component')"
265+
type="click"
266+
@callback="callbackEvent('using-component')"
267267
/>
268268

269269
<script>
@@ -281,8 +281,8 @@ export default {
281281

282282
```html
283283
<EasterEggComponent
284-
type="click"
285-
@callback="callbackEvent('using-component')"
284+
type="click"
285+
@callback="callbackEvent('using-component')"
286286
/>
287287

288288
<script>
@@ -304,9 +304,9 @@ export default {
304304

305305
```html
306306
<EasterEggComponent
307-
type="click"
307+
type="click"
308308
target="h1"
309-
@callback="callbackEvent('using-component')"
309+
@callback="callbackEvent('using-component')"
310310
/>
311311

312312
<script>
@@ -324,10 +324,10 @@ export default {
324324

325325
```html
326326
<EasterEggComponent
327-
type="click"
327+
type="click"
328328
target="#foo"
329329
pattern="['click', 'click']"
330-
@callback="callbackEvent('using-component')"
330+
@callback="callbackEvent('using-component')"
331331
/>
332332

333333
<script>
@@ -345,10 +345,10 @@ export default {
345345

346346
```html
347347
<EasterEggComponent
348-
type="click"
348+
type="click"
349349
target=".foo"
350350
pattern="['click', 'click', 'click']"
351-
@callback="callbackEvent('using-component')"
351+
@callback="callbackEvent('using-component')"
352352
/>
353353

354354
<script>

0 commit comments

Comments
 (0)