Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 72e0b9b

Browse files
committed
remove focus
1 parent 85d885b commit 72e0b9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/common/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ const wrapFn = function(event: Event) {
159159
};
160160

161161
export function patchProperty(obj: any, prop: string, prototype?: any) {
162-
let desc: PropertyDescriptor | null = null;
162+
let desc: PropertyDescriptor|null = null;
163163
const originalDesc = ObjectGetOwnPropertyDescriptor(obj, prop);
164164
if (!originalDesc && prototype) {
165165
// when patch window object, use prototype to check prop exist or not

test/browser/performance.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Performance', () => {
1717
return performance && performance['getEntriesByName'] &&
1818
performance['getEntriesByName'](name).filter(m => m.entryType === 'measure');
1919
}
20-
fdescribe('Lazy mode', () => {
20+
describe('Lazy mode', () => {
2121
const rootZone = Zone.root;
2222
const noop = function() {};
2323
const normal = function() {

0 commit comments

Comments
 (0)