Skip to content

Instantly share code, notes, and snippets.

@pazguille
Last active August 29, 2015 13:59
Show Gist options
  • Save pazguille/10595800 to your computer and use it in GitHub Desktop.
Save pazguille/10595800 to your computer and use it in GitHub Desktop.
(function (window, n) {
'use strict';
var storage = window.localStorage;
var count = parseInt(storage.getItem('gkcounter'), 10) || 0;
if (count >= n) {
alert('Create a new instance of gesturekit');
return;
}
count += 1;
storage.setItem('gkcounter', count);
}(this, 5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment