Context Sensitive Help Infinite Loop
Hello,
Our company has been experiencing issues with the context sensitive help loading over and over again when opened. We are using RoboHelp 2017. We are hosting our help online on our password protected website. We would like the context sensitive help to open the website page. We do not want to include the help in the program files to be called locally, because we would like these to be password protected for licensed users.
The issue seems to stop happening when we remove the + query code in the topic.js file, but then our pages are cut off.
We were experiencing issues with the banner below appearing on our pages, but we added a script to the topics to prevent this banner from appearing.

<script type="text/javascript">function checkHelpWindow() {
if(window.self === window.top) {
rh._.redirectToLayout();
}
}
(function(){
rh.model.subscribe(rh.consts('EVT_PROJECT_LOADED'), checkHelpWindow);
}.call(this));</script>
This doesn't seem to have any effect on the looping, because whether or not the banner appears the infinite reloading still occurs once the banner is closed.
We have been relying on map files to call our help.
The current call relies on rhmapno= tags in the program code.
I'm afraid what's happening is that we are having issues because we are trying to use the assigned map ids when linking to a url or our calls are incorrect. Do you know why this looping is occurring and how we can call the url properly so that there will not be infinite reloading?
