|
|
|
@ -1,10 +1,16 @@ |
|
|
|
|
{% if add_ready %} |
|
|
|
|
$(document).ready(function() { |
|
|
|
|
$(window).load(function () { |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
var my_text = $(".glossary-content").html(); |
|
|
|
|
var ajaxRequestUrl = "{{ _p.web }}main/glossary/glossary_ajax_request.php"; |
|
|
|
|
var imageSource = "{{ _p.web }}main/inc/lib/javascript/indicator.gif"; |
|
|
|
|
var indicatorImage ='<img src="' + imageSource + '" />'; |
|
|
|
|
|
|
|
|
|
$.ajax({ |
|
|
|
|
contentType: "application/x-www-form-urlencoded", |
|
|
|
|
beforeSend: function(content_object) {}, |
|
|
|
|
type: "POST", |
|
|
|
|
url: ajaxRequestUrl, |
|
|
|
|
data: "glossary_data=true", |
|
|
|
@ -12,13 +18,14 @@ $(document).ready(function() { |
|
|
|
|
if (datas.length==0) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
data_terms = datas.split("[|.|_|.|-|.|]"); |
|
|
|
|
// glossary terms |
|
|
|
|
data_terms=datas.split("[|.|_|.|-|.|]"); |
|
|
|
|
var complex_array = new Array(); |
|
|
|
|
var cp_complex_array = new Array(); |
|
|
|
|
for (i=0;i<data_terms.length;i++) { |
|
|
|
|
for(i=0;i<data_terms.length;i++) { |
|
|
|
|
specific_terms=data_terms[i].split("__|__|"); |
|
|
|
|
var real_term = specific_terms[1]; |
|
|
|
|
var real_code = specific_terms[0]; |
|
|
|
|
var real_term = specific_terms[1]; // glossary term |
|
|
|
|
var real_code = specific_terms[0]; // glossary id |
|
|
|
|
complex_array[real_code] = real_term; |
|
|
|
|
cp_complex_array[real_code] = real_term; |
|
|
|
|
} |
|
|
|
@ -40,41 +47,54 @@ $(document).ready(function() { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$('#highlight-plugin').removeHighlight().highlight(n,my_index) |
|
|
|
|
$('body').removeHighlight().highlight(n, my_index); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var complex_array = new Array(); |
|
|
|
|
$("#highlight-plugin .glossary-ajax").mouseover(function(){ |
|
|
|
|
//mouse on click |
|
|
|
|
$("body").on("click", ".glossary-ajax", function(e) { |
|
|
|
|
random_id = Math.round(Math.random()*100); |
|
|
|
|
div_show_id="div_show_id"+random_id; |
|
|
|
|
div_content_id="div_content_id"+random_id; |
|
|
|
|
$(this).append("<div id="+div_show_id+" ><div id="+div_content_id+"> </div></div>"); |
|
|
|
|
$("div#"+div_show_id).attr("style","z-index:99;display:inline;float:left;position:absolute;background-color:#F2F2F2;border-bottom: 1px solid #2E2E2E;border-right: 1px solid #2E2E2E;border-left: 1px solid #2E2E2E;border-top: 1px solid #2E2E2E;color:#305582;margin-left:5px;margin-right:5px;"); |
|
|
|
|
$("div#"+div_content_id).attr("style","z-index:99;background-color:#F2F2F2;color:#0B3861;margin-left:8px;margin-right:8px;margin-top:5px;margin-bottom:5px;"); |
|
|
|
|
div_show_id = "div_show_id"; |
|
|
|
|
div_content_id = "div_content_id"; |
|
|
|
|
|
|
|
|
|
$(this).append("<div id="+div_show_id+"><div id="+div_content_id+"> </div></div>"); |
|
|
|
|
var $target = $(this); |
|
|
|
|
|
|
|
|
|
//$("#"+div_show_id).dialog("destroy"); |
|
|
|
|
$("#"+div_show_id).dialog({ |
|
|
|
|
autoOpen: false, |
|
|
|
|
width: 600, |
|
|
|
|
height: 200, |
|
|
|
|
position: { my: 'left top', at: 'right top', of: $target }, |
|
|
|
|
close: function(){ |
|
|
|
|
$("div#"+div_show_id).remove(); |
|
|
|
|
$("div#"+div_content_id).remove(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
notebook_id = $(this).attr("name"); |
|
|
|
|
data_notebook = notebook_id.split("link"); |
|
|
|
|
my_glossary_id = data_notebook[1]; |
|
|
|
|
|
|
|
|
|
$.ajax({ |
|
|
|
|
contentType: "application/x-www-form-urlencoded", |
|
|
|
|
beforeSend: function(content_object) { |
|
|
|
|
$("div#"+div_content_id).html("<img src='{{ _p.web_main }}/inc/lib/javascript/indicator.gif' />"); |
|
|
|
|
$("div#"+div_content_id).html(indicatorImage); |
|
|
|
|
}, |
|
|
|
|
type: "POST", |
|
|
|
|
url: ajaxRequestUrl, |
|
|
|
|
data: "glossary_id="+my_glossary_id, |
|
|
|
|
success: function(datas) { |
|
|
|
|
$("div#"+div_content_id).html(datas); |
|
|
|
|
$("#"+div_show_id).dialog("open"); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$("#highlight-plugin .glossary-ajax").mouseout(function(){ |
|
|
|
|
var current_element = $(this); |
|
|
|
|
div_show_id=current_element.find("div").attr("id"); |
|
|
|
|
$("div#"+div_show_id).remove(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
{% if add_ready %} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|