DefinitelyTyped/types/angular-fullscreen/angular-fullscreen-tests.ts

13 lines
315 B
TypeScript
Raw Normal View History

2016-05-10 19:22:25 +00:00
angular
.module('TestApp', ['FBAngular'])
.controller('TestCtrl', (Fullscreen: ng.fullscreen.IFullscreen) => {
Fullscreen.all();
Fullscreen.toggleAll();
Fullscreen.enable(document.getElementById('test-id'));
Fullscreen.cancel();
Fullscreen.isEnabled();
Fullscreen.isSupported();
});