-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,7 @@ const PROVIDERS = [ | |
p.NavController, | ||
p.Platform, | ||
p.Events, | ||
p.DomController | ||
]; | ||
|
||
@NgModule({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Injectable } from '@angular/core'; | ||
|
||
@Injectable() | ||
export class DomController { | ||
|
||
read(cb: RafCallback) { | ||
getQueue().read(cb); | ||
} | ||
|
||
write(cb: RafCallback) { | ||
getQueue().write(cb); | ||
} | ||
} | ||
|
||
function getQueue() { | ||
const ionic = (window as any).Ionic; | ||
return ionic.queue; | ||
This comment has been minimized.
Sorry, something went wrong. |
||
} | ||
|
||
export type RafCallback = { (timeStamp?: number): void }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Is this always guaranteed to return a value and not be null?