diff --git a/public/index.html b/public/index.html index 9679fd4..11390fa 100644 --- a/public/index.html +++ b/public/index.html @@ -14,23 +14,46 @@ +
+ + + + + +
+ +

Preencha as informações abaixo

-
+
-
-
+ +
-
+
-
+
-
+
-
+
-
-
+ +
-
+
-
-
+ +
-
+
@@ -114,9 +137,9 @@

Preencha as informações abaixo

-
+ -
+
-
+
@@ -137,15 +160,15 @@

Preencha as informações abaixo

-
+
-
+
-
+
diff --git a/public/relatorioCodigo.js b/public/relatorioCodigo.js index 15ca73b..48b3ced 100644 --- a/public/relatorioCodigo.js +++ b/public/relatorioCodigo.js @@ -177,4 +177,24 @@ window.onload = function() { document.getElementById("resposta").innerHTML = JSON.stringify(result); }); }); +} +$(function(){ + $('.checkbox').hide(); + $('ul[role=menu] a').click(function(event) { + var inputName = $(this).data('input-id'); + showForm(inputName); + + }); + $('ul[role=menu] a').first().trigger('click') + +}) +function showForm(form){ + var formTitle = $('a[data-input-id='+form+']').html(); + $('.dropdown-toggle').html( formTitle + ''); + $('h1').html(formTitle); + $('[data-form-name]:visible').fadeOut('fast', function() { + $('[data-form-name='+form+']').fadeIn('fast',function() { + $('input[value='+form+']').trigger('click') + }); + }); } \ No newline at end of file