Replace Feedback Button Code

Issue #203 resolved
udemi repo owner created an issue

The Feedback button currently slides out automatically, which was useful for the very friendly user test.

Now it should not slide out automatically anymore. So here is the new code:

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>   
<script type="text/javascript">
var h = document.getElementsByTagName('head')[0];
(function(){
var fc = document.createElement('link'); fc.type = 'text/css'; fc.rel = 'stylesheet';
fc.href = 'https://product.feedbacklite.com/feedbacklite.css'; h.appendChild(fc);
})();
var fbl = {'campaign':{'id':1340, 'type':2, 'size':2, 'position':5, 'tab':4, 'control':1}};
(function(){
var fj = document.createElement('script'); fj.type = 'text/javascript';
fj.async = true; fj.src = 'https://product.feedbacklite.com/feedbacklite.js'; h.appendChild(fj);
})();
</script>

Comments (2)

  1. Log in to comment