blob: eaf728c384c0903f7081f750948058605214f5d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$.noConflict();
jQuery(document).ready(function($) {
$("#editdata").one("click",function() {
$("#chart").hide();
var orgdata = document.getElementById('orgcontent').value;
document.getElementById('gnoweditor').style.visibility="visible";
$("#gnoweditor").orgitdown(mySettings);
$("#gnoweditor").val(orgdata);
});
});
|