|
Lines 833-839
Link Here
|
| 833 |
$( ".expand-textarea" ).on("click", function(e){ |
833 |
$( ".expand-textarea" ).on("click", function(e){ |
| 834 |
e.preventDefault(); |
834 |
e.preventDefault(); |
| 835 |
$(this).hide(); |
835 |
$(this).hide(); |
| 836 |
var target = $(this).data("target"); |
836 |
var target = $(this).data("bs-target"); |
| 837 |
var syntax = $(this).data("syntax"); |
837 |
var syntax = $(this).data("syntax"); |
| 838 |
$("#collapse_" + target ).show(); |
838 |
$("#collapse_" + target ).show(); |
| 839 |
if( syntax ){ |
839 |
if( syntax ){ |
|
Lines 858-864
Link Here
|
| 858 |
$( ".collapse-textarea" ).on("click", function(e){ |
858 |
$( ".collapse-textarea" ).on("click", function(e){ |
| 859 |
e.preventDefault(); |
859 |
e.preventDefault(); |
| 860 |
$(this).hide(); |
860 |
$(this).hide(); |
| 861 |
var target = $(this).data("target"); |
861 |
var target = $(this).data("bs-target"); |
| 862 |
var syntax = $(this).data("syntax"); |
862 |
var syntax = $(this).data("syntax"); |
| 863 |
$("#expand_" + target ).show(); |
863 |
$("#expand_" + target ).show(); |
| 864 |
if( syntax ){ |
864 |
if( syntax ){ |
| 865 |
- |
|
|