Skip to content

Commit d8dcaf6

Browse files
author
amandaesmith3
committed
picker/multiple-column
1 parent 6f82577 commit d8dcaf6

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

static/usage/v7/picker/multiple-column/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class ExampleComponent {
6868
{
6969
text: 'Confirm',
7070
handler: (value) => {
71-
window.alert(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
71+
console.log(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
7272
},
7373
},
7474
];

static/usage/v7/picker/multiple-column/demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
{
8585
text: 'Confirm',
8686
handler: (value) => {
87-
window.alert(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
87+
console.log(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
8888
},
8989
},
9090
];

static/usage/v7/picker/multiple-column/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ import angular_example_component_html from './angular/example_component_html.md'
2222
}}
2323
src="usage/v7/picker/multiple-column/demo.html"
2424
size="medium"
25+
showConsole={true}
2526
/>

static/usage/v7/picker/multiple-column/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
{
6868
text: 'Confirm',
6969
handler: (value) => {
70-
window.alert(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
70+
console.log(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
7171
},
7272
},
7373
];

static/usage/v7/picker/multiple-column/react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function Example() {
6969
{
7070
text: 'Confirm',
7171
handler: (value) => {
72-
window.alert(
72+
console.log(
7373
`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`
7474
);
7575
},

static/usage/v7/picker/multiple-column/vue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
{
7474
text: 'Confirm',
7575
handler: (value) => {
76-
window.alert(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
76+
console.log(`You selected a ${value.crust.text} pizza with ${value.meat.text} and ${value.veggies.text}`);
7777
},
7878
},
7979
];

0 commit comments

Comments
 (0)