-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtest.js
36 lines (36 loc) · 1.64 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Copy this to create a plugin, which brings extra,
* non-central optional functionality to code-input.
* Instances of plugins can be passed in in an array
* to the `plugins` argument when registering a template,
* for example like this:
* ```javascript
* codeInput.registerTemplate("syntax-highlighted", codeInput.templates.hljs(hljs, [new codeInput.plugins.Test()]));
* ```
*/
codeInput.plugins.Test = class extends codeInput.Plugin {
constructor() {
super(["testattr"]);
// Array of observed attributes as parameter
}
/* Runs before code is highlighted; Params: codeInput element) */
beforeHighlight(codeInput) {
console.log(codeInput, "before highlight");
}
/* Runs after code is highlighted; Params: codeInput element) */
afterHighlight(codeInput) {
console.log(codeInput, "after highlight");
}
/* Runs before elements are added into a `code-input`; Params: codeInput element) */
beforeElementsAdded(codeInput) {
console.log(codeInput, "before elements added");
}
/* Runs after elements are added into a `code-input` (useful for adding events to the textarea); Params: codeInput element) */
afterElementsAdded(codeInput) {
console.log(codeInput, "after elements added");
}
/* Runs when an observed attribute of a `code-input` is changed (you must add the attribute name in the constructor); Params: codeInput element, name attribute name, oldValue previous value of attribute, newValue changed value of attribute) */
attributeChanged(codeInput, name, oldValue, newValue) {
console.log(codeInput, name, ":", oldValue, ">", newValue);
}
}