Last active
November 25, 2020 21:04
-
-
Save mkellyxp/8160c6c9ca44cf4efc8321768012e8f7 to your computer and use it in GitHub Desktop.
Override Elevio's Open Article function when down
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
// Comment out the function(e,l,v,i,o,n)... code and add this after. | |
// NOTE: Be sure to change "membervault" to whatever your account name is. | |
class elev { | |
openArticle( p_nId ){ | |
window.open( 'https://membervault.elevio.help/en/articles/' + p_nId, '_blank'); | |
} | |
} | |
var _elev = new elev; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment