git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@4764 a333f486-631f-4898-b8df-5754b55c2be0
@@ -34,4 +34,15 @@
</div>
</a>
{% endblock %}
-</div>
+</div>
+
+<script type="text/javascript">
+ $(document).ready(function(){
+ // Preventing click on tile to scroll up
+ $('#brick-{{ brick.GetId }}').on('click', function(oEvent){
+ if(oEvent.target.type !== 'submit'){
+ oEvent.preventDefault();
+ }
+ });
+</script>