Last active
May 1, 2017 09:08
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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