Skip to content

Commit 78b9412

Browse files
authored
Fix iOS keyboard input. (#27)
* Fixed iOS keyboard input bug caused by iOS update.
1 parent 0b23044 commit 78b9412

31 files changed

Lines changed: 4390 additions & 5665 deletions

ambient.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// noinspection JSUnusedGlobalSymbols
2+
3+
interface String {
4+
/**
5+
* Gets a substring beginning at the specified location and having the specified length.
6+
* (deprecation removed)
7+
* @param from The starting position of the desired substring. The index of the first character in the string is zero.
8+
* @param length The number of characters to include in the returned substring.
9+
*/
10+
substr(from: number, length?: number): string;
11+
}

karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ module.exports = function (config) {
1616
clearContext: false // leave Jasmine Spec Runner output visible in browser
1717
},
1818
coverageIstanbulReporter: {
19-
dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ],
19+
dir: require('path').join(__dirname, 'coverage'), reports: ['html', 'lcovonly'],
2020
fixWebpackSourcePaths: true
2121
},
22-
22+
2323
reporters: ['progress', 'kjhtml'],
2424
port: 9876,
2525
colors: true,

0 commit comments

Comments
 (0)