Vanilla Web Component for interacting with the full screen API
npm install full-screen##### Installation
``
npm i --save full-screen
bower install --save full-screen
`
#### Properties
| Name | Description |
| -------------- | ------------- |
| target | The target item that should be full screened. if none is provided it will full screen the whole page |
#### Example
`HTML`
#### Dynamic
To dynamically add new Full Screen element.
`JS
var createFullScreen = require('full-screen/full-screen'); // or available by 'createFullScreen' on window if not using modules
var fullScreen = createFullScreen({
target = "#my-element"
});
document.appendElement(fullScreen);
``