13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
/**
|
|
* This function is executed after the page is loaded.
|
|
*
|
|
* @function
|
|
* @name init
|
|
* @kind function
|
|
*/
|
|
function init() {
|
|
// Make sure that only plain text is pasted
|
|
configurePastingInElement("xmlArea");
|
|
configurePastingInElement("transformArea");
|
|
|
|
} |