Skip to content

Instantly share code, notes, and snippets.

@anasnakawa
Last active May 1, 2017 09:08
Show Gist options
  • Save anasnakawa/0c87df85b8576b210e5dd488fe2b64e9 to your computer and use it in GitHub Desktop.
Save anasnakawa/0c87df85b8576b210e5dd488fe2b64e9 to your computer and use it in GitHub Desktop.
a code that when added into a Script Editor Web Part, on a site that has ShortPoint installed, will be executed as soon as ShortPoint is ready on the page.
<script type="text/javascript">
(function() {
'use strict';
/**
* hook method to be executed as soon as shortpoint
* is available in the page
*/
function initHook() {
// exit on edit mode
if( window.shortPointInserter ) {
return;
}
// shortpoint is ready and rendered on the page
// page not in edit mode, do whatever you like
// here ...
};
// shortpoint not yet available in the page
// wait for shortpoint ready dom event
if( !window.shortpoint && !window.shortpoint.util ) {
document.addEventListener( 'shortpoint-init', initHook );
} else {
initHook();
}
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment