Skip to content

Commit 96f1625

Browse files
marc-x-andrejelbourn
authored andcommitted
docs(drag-drop): add last star wars movie in examples (#18319)
1 parent 290d102 commit 96f1625

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-placeholder/cdk-drag-drop-custom-placeholder-example.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export class CdkDragDropCustomPlaceholderExample {
1818
'Episode V - The Empire Strikes Back',
1919
'Episode VI - Return of the Jedi',
2020
'Episode VII - The Force Awakens',
21-
'Episode VIII - The Last Jedi'
21+
'Episode VIII - The Last Jedi',
22+
'Episode IX – The Rise of Skywalker'
2223
];
2324

2425
drop(event: CdkDragDrop<string[]>) {

src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-preview/cdk-drag-drop-custom-preview-example.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export class CdkDragDropCustomPreviewExample {
4343
{
4444
title: 'Episode VIII - The Last Jedi',
4545
poster: 'https://upload.wikimedia.org/wikipedia/en/7/7f/Star_Wars_The_Last_Jedi.jpg'
46+
},
47+
{
48+
title: 'Episode IX – The Rise of Skywalker',
49+
poster: 'https://upload.wikimedia.org/wikipedia/en/a/af/Star_Wars_The_Rise_of_Skywalker_poster.jpg'
4650
}
4751
];
4852
// tslint:enable:max-line-length

src/components-examples/cdk/drag-drop/cdk-drag-drop-sorting/cdk-drag-drop-sorting-example.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export class CdkDragDropSortingExample {
1818
'Episode V - The Empire Strikes Back',
1919
'Episode VI - Return of the Jedi',
2020
'Episode VII - The Force Awakens',
21-
'Episode VIII - The Last Jedi'
21+
'Episode VIII - The Last Jedi',
22+
'Episode IX – The Rise of Skywalker'
2223
];
2324

2425
drop(event: CdkDragDrop<string[]>) {

0 commit comments

Comments
 (0)