diff --git a/templates/explorer.html b/templates/explorer.html index aed1e06b4e04abcca8105187d9dd098ee4bd9553..9257cb4c345d29522c51839bb250aa724de5478e 100644 --- a/templates/explorer.html +++ b/templates/explorer.html @@ -382,5 +382,14 @@ <script src="{% static "js/tinawebJS/DataScanner.js" %}" type="text/javascript" language="javascript"></script> <script src="{% static "js/tinawebJS/main.js" %}" type="text/javascript" language="javascript"></script> + <script type="text/javascript"> + $('#tab-container').easytabs({updateHash:false}); + // Popup window code + function newPopup(url) { + popupWindow = window.open( + url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no') + } + </script> + {% endblock %}