An open API service indexing awesome lists of open source software.

https://github.com/robflaherty/detect-ios-multitask


https://github.com/robflaherty/detect-ios-multitask

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Detect iOS Multitask Mode in Safari
```

detectIOSMultitask(function(data) {

// data.event = 'load', 'enter', or 'exit'
console.log( data['event'], data['width'], data['height'] );

// Example Google Analytics event
ga('send', 'event', 'iOS Multitask', data['event'], data['width'] + 'x' + data['height'], {'nonInteraction': 1});

});

```