Skip to content

Commit

Permalink
Fix iOS keyboard input. (#27)
Browse files Browse the repository at this point in the history
* Fixed iOS keyboard input bug caused by iOS update.
  • Loading branch information
kshetline authored May 1, 2022
1 parent 0b23044 commit 78b9412
Show file tree
Hide file tree
Showing 31 changed files with 4,390 additions and 5,665 deletions.
11 changes: 11 additions & 0 deletions ambient.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// noinspection JSUnusedGlobalSymbols

interface String {
/**
* Gets a substring beginning at the specified location and having the specified length.
* (deprecation removed)
* @param from The starting position of the desired substring. The index of the first character in the string is zero.
* @param length The number of characters to include in the returned substring.
*/
substr(from: number, length?: number): string;
}
4 changes: 2 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ module.exports = function (config) {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ],
dir: require('path').join(__dirname, 'coverage'), reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true
},

reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
Expand Down
Loading

0 comments on commit 78b9412

Please sign in to comment.