Friendlier download dialog + pairing (#1212)

* first shot at new download

* fixing image

* handle column width

* fixed colors

* updated images

* PR feedback
This commit is contained in:
Peli de Halleux
2018-09-11 20:50:52 -07:00
committed by GitHub
parent a17ade5b3b
commit fbb23feda7
6 changed files with 103 additions and 0 deletions

View File

@ -159,6 +159,12 @@
"String.concat": "Returns a string that contains the concatenation of two or more strings.",
"String.concat|param|other": "The string to append to the end of the string.",
"String.fromCharCode": "Make a string from the given ASCII character code.",
"String.includes": "Determines whether a string contains the characters of a specified string.",
"String.includes|param|searchValue": "the text to find",
"String.includes|param|start": "optional start index for the search",
"String.indexOf": "Returns the position of the first occurrence of a specified value in a string.",
"String.indexOf|param|searchValue": "the text to find",
"String.indexOf|param|start": "optional start index for the search",
"String.isEmpty": "Returns a value indicating if the string is empty",
"String.length": "Returns the length of a String object.",
"String.substr": "Return a substring of the current string.",