how to allow text to be copied in an input element ionic

Solutions on MaxInterview for how to allow text to be copied in an input element ionic by the best coders in the world

showing results for - "how to allow text to be copied in an input element ionic"
Elias
18 Feb 2017
1Add the following code to your variable.scss file:
2
3* {
4    -webkit-user-select: text;
5    -moz-user-select: text;
6    -ms-user-select: text;
7    user-select: text;
8}