fixed mouse wheel scrolling
This commit is contained in:
parent
b9c82f280b
commit
c6618614d9
4 changed files with 12 additions and 6 deletions
|
|
@ -7,13 +7,14 @@
|
|||
|
||||
{% block includes %}
|
||||
<link href="{% static "three_d_viewer/css/bootstrap.css" %}" rel="stylesheet" media="screen" />
|
||||
<link href="{% static "three_d_viewer/css/custom.css" %}" rel="stylesheet" media="screen" />
|
||||
<script type="text/javascript" src="{% static "three_d_viewer/js/jquery-2.0.3.js" %}"></script>
|
||||
<script type="text/javascript" src="{% static "three_d_viewer/js/bootstrap.min.js" %}"></script>
|
||||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body onload={% block loadscript %}""{% endblock %}>
|
||||
<div class="container">
|
||||
<div class="my-fluid-container">
|
||||
<div class="page-header">
|
||||
{% block pageheader %}
|
||||
<h1>Three D Viewer</h1>
|
||||
|
|
@ -21,8 +22,8 @@
|
|||
{% endblock %}
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="row my-fluid-container">
|
||||
<div class="col-sm-4 col-md-2">
|
||||
{% block sidebar %}
|
||||
<div class="row">
|
||||
{% include "three_d_viewer/sampletree.html" %}
|
||||
|
|
@ -30,7 +31,7 @@
|
|||
{% endblock %}
|
||||
</div>
|
||||
|
||||
<div id="contentdiv" class="col-md-8" style="border:1px solid black" height="100%">
|
||||
<div id="contentdiv" class="col-sm-8 col-md-10" style="border:1px solid black" height="100%">
|
||||
{% block content %}
|
||||
<p>Put some intro text sort of stuff here</p>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue