Onfullscreen & onfullscreenExit event

Plaese press F12, open the develop tools.

x
 
1
#### Setting
2
3
```javascript
4
{
5
    onfullscreen : function() {
6
        // alert("onfullscreen");
7
        // console.log("onfullscreen =>", this, this.id, this.settings);
8
    },
9
10
    onfullscreenExit : function() {
11
        // alert("onfullscreenExit");
12
        // console.log("onfullscreenExit =>", this, this.id, this.settings);
13
    }
14
}
15
```
16

Setting

  1. {
  2. onfullscreen : function() {
  3. // alert("onfullscreen");
  4. // console.log("onfullscreen =>", this, this.id, this.settings);
  5. },
  6. onfullscreenExit : function() {
  7. // alert("onfullscreenExit");
  8. // console.log("onfullscreenExit =>", this, this.id, this.settings);
  9. }
  10. }