Commit 2cb6b15b authored by ibuler's avatar ibuler

set textarea rows

parent 2f5b7ad6
...@@ -6,18 +6,19 @@ ...@@ -6,18 +6,19 @@
<script src="{% static "js/inspinia.js" %}"></script> <script src="{% static "js/inspinia.js" %}"></script>
<script src="{% static "js/jumpserver.js" %}"></script> <script src="{% static "js/jumpserver.js" %}"></script>
<!-- active menu -->
<script> <script>
<!-- active menu -->
var url_array = document.location.pathname.split("/"); var url_array = document.location.pathname.split("/");
s1 = url_array[1]; app = url_array[1];
s2 = url_array[2]; resource = url_array[2];
if (s1 == ''){ if (app == ''){
$('#index').addClass('active') $('#index').addClass('active')
} else { } else {
$("#"+s1).addClass('active'); $("#"+app).addClass('active');
$('#'+s1+' #'+s2).addClass('active'); $('#'+app+' #'+resource).addClass('active');
} }
<!-- ajax set cookie -->
function getCookie(name) { function getCookie(name) {
var cookieValue = null; var cookieValue = null;
if (document.cookie && document.cookie !== '') { if (document.cookie && document.cookie !== '') {
...@@ -46,8 +47,10 @@ ...@@ -46,8 +47,10 @@
beforeSend: function(xhr, settings) { beforeSend: function(xhr, settings) {
if (!csrfSafeMethod(settings.type) && !this.crossDomain) { if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
xhr.setRequestHeader("X-CSRFToken", csrftoken); xhr.setRequestHeader("X-CSRFToken", csrftoken);
{# xhr.setRequestHeader("sessionid", sessionid);#}
} }
} }
}); });
<!-- textarea rows -->
$('textarea').attr('rows', 5)
</script> </script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment