diff --git a/tests/dummy/app/templates/date-picker.hbs b/tests/dummy/app/templates/date-picker.hbs index 96f8a1d..20a8864 100644 --- a/tests/dummy/app/templates/date-picker.hbs +++ b/tests/dummy/app/templates/date-picker.hbs @@ -17,6 +17,15 @@ {{code-snippet name="date-picker-advanced.hbs"}} +
The date picker can be rendered into another DOM element @@ -167,7 +179,7 @@ {{code-snippet name="input-date-destinationElementId.hbs"}} {{! BEGIN-SNIPPET input-date-destinationElementId }} -{{input-date destinationElementId="date-picker-container"}} +{{input-date to="date-picker-container"}} {{! END-SNIPPET }}
This will position the date picker at the bottom/left corner of the destination element specified.
@@ -180,7 +192,7 @@ {{code-snippet name="input-date-position-by-cursor.hbs"}} {{! BEGIN-SNIPPET input-date-position-by-cursor }} -{{input-date setPositionByCursor=true destinationElementId="date-picker-container"}} +{{input-date setPositionByCursor=true to="date-picker-container"}} {{! END-SNIPPET }}diff --git a/tests/dummy/app/templates/input-time.hbs b/tests/dummy/app/templates/input-time.hbs index b59ab5e..9153ff3 100644 --- a/tests/dummy/app/templates/input-time.hbs +++ b/tests/dummy/app/templates/input-time.hbs @@ -16,6 +16,21 @@ {{code-snippet name="input-time-advanced.hbs"}} +
The time picker can be rendered into another DOM element @@ -197,7 +212,7 @@ {{code-snippet name="input-time-destinationElementId.hbs"}} {{! BEGIN-SNIPPET input-time-destinationElementId }} -{{input-time destinationElementId="time-picker-container"}} +{{input-time to="time-picker-container"}} {{! END-SNIPPET }}
This will position the time picker at the bottom/left corner of the destination element specified.
@@ -210,7 +225,7 @@ {{code-snippet name="input-time-position-by-cursor.hbs"}} {{! BEGIN-SNIPPET input-time-position-by-cursor }} -{{input-time setPositionByCursor=true destinationElementId="time-picker-container"}} +{{input-time setPositionByCursor=true to="time-picker-container"}} {{! END-SNIPPET }}diff --git a/tests/dummy/app/templates/time-picker.hbs b/tests/dummy/app/templates/time-picker.hbs index d8eab39..0fc1a2a 100644 --- a/tests/dummy/app/templates/time-picker.hbs +++ b/tests/dummy/app/templates/time-picker.hbs @@ -18,6 +18,18 @@ {{code-snippet name="time-picker-advanced.hbs"}} +