-
Notifications
You must be signed in to change notification settings - Fork 1
/
core.js
90 lines (79 loc) · 3.1 KB
/
core.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
Emux Website
Copyright (C) Emux Technologies. All Rights Reserved.
https://emux.app
Licenced by the Emux Open-Source Licence, which can be found at LICENCE.md.
*/
var core = {
getURLParameter: function(parameter) {
return decodeURIComponent((new RegExp("[?|&]" + parameter + "=" + "([^&;]+?)(&|#|;|$)").exec(location.search) || [null, ""])[1].replace(/\+/g, "%20")) || null;
}
};
$(function() {
$("[import]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("import"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
$(thisPassOn).html(data);
});
} else {
$(this).html("<em>Content will go here at runtime: " + $(this).attr("import") + "</em>");
}
});
$("[markdown]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("markdown"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
$(thisPassOn).html(new showdown.Converter().makeHtml(data));
});
} else {
$(this).html("<em>Content will go here at runtime: " + $(this).attr("markdown") + "</em>");
}
});
setInterval(function() {
$("[importrf]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("markdownrf"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
if ($(thisPassOn).html() != data) {
$(thisPassOn).html(data);
}
});
} else {
$(this).html("<em>Content will go here at runtime: " + $(this).attr("markdownrf") + "</em>");
}
});
$("[markdownrf]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("markdownrf"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
if ($(thisPassOn).html() != new showdown.Converter().makeHtml(data)) {
$(thisPassOn).html(new showdown.Converter().makeHtml(data));
}
});
} else {
$(this).html("<em>Content will go here at runtime: " + $(this).attr("markdownrf") + "</em>");
}
});
}, 1000);
});