Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
angular-bigscreen
Advanced tools
AngularBigScreen is an Angular service to quickly use the HTML5 fullscreen API.
Install angular-bigscreen
node module through npm:
$ npm install angular-bigscreen --save
Import BigScreenModule
to your AppModule
import { BigScreenModule } from 'angular-bigscreen';
@NgModule({
imports: [
BigScreenModule.forRoot()
]
})
export class AppModule {
}
Import BigScreenService
and use it in a component
import { BigScreenService } from 'angular-bigscreen';
@Component({
selector: 'app-root',
})
export class AppComponent {
constructor(private bigScreenService: BigScreenService) {
}
}
For example:
// Request fullscreen
this.bigScreenService.request(this.elementRef.nativeElement);
this.bigScreenService.isFullscreen()
Returns a boolean
. True if fullscreen is being used, else false.
this.bigScreenService.isEnabled()
Returns a boolean
. Checks if fullscreen is enabled.
this.bigScreenService.request(el: ElementRef)
Requests fullscreen on an ElementRef
.
this.bigScreenService.exit()
Exits from fullscreen.
this.bigScreenService.onChange(callback: any)
This is a wrapper for document.fullscreenchange
.
this.bigScreenService.onError(callback: any)
This is a wrapper for document.fullscreenerror
.
this.bigScreenService.getElement()
Returns an element. This is a wrapper for document.fullscreenElement
.
MIT. Copyright (c) Alex.
FAQs
An Angular service to quickly use the HTML5 fullscreen API
We found that angular-bigscreen demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.