306 lines
6.4 KiB
JavaScript
306 lines
6.4 KiB
JavaScript
|
// PANEL TOOLS
|
||
|
$(document).ready(function(){
|
||
|
$(".panel-tools .minimise-tool").click(function(event){
|
||
|
$(this).parents(".panel").find(".panel-body").slideToggle(100);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$(".panel-tools .closed-tool").click(function(event){
|
||
|
$(this).parents(".panel").fadeToggle(400);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// Search
|
||
|
$(document).ready(function(){
|
||
|
$(".panel-tools .search-tool").click(function(event){
|
||
|
$(this).parents(".panel").find(".panel-search").toggle(100);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// Embed
|
||
|
$(document).ready(function(){
|
||
|
$(".panel-tools .embed-tool").click(function(event){
|
||
|
$(this).parents(".panel").find(".panel-embed").toggle(100);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
|
||
|
$('.panel-tools .expand-tool').on('click', function(){
|
||
|
if($(this).parents(".panel").hasClass('panel-fullsize'))
|
||
|
{
|
||
|
$(this).parents(".panel").removeClass('panel-fullsize');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$(this).parents(".panel").addClass('panel-fullsize');
|
||
|
|
||
|
}
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
// Widget tools
|
||
|
$(document).ready(function(){
|
||
|
$(".widget-tools .closed-tool").click(function(event){
|
||
|
$(this).parents(".widget").fadeToggle(400);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
|
||
|
$('.widget-tools .expand-tool').on('click', function(){
|
||
|
if($(this).parents(".widget").hasClass('widget-fullsize'))
|
||
|
{
|
||
|
$(this).parents(".widget").removeClass('widget-fullsize');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$(this).parents(".widget").addClass('widget-fullsize');
|
||
|
|
||
|
}
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
// Alerts
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$(".paste-alert .closed").click(function(event){
|
||
|
$(this).parents(".paste-alert").fadeToggle(350);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$(".paste-alert-click").click(function(event){
|
||
|
$(this).fadeToggle(350);
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
// Tooltips
|
||
|
$(function () {
|
||
|
$('[data-toggle="tooltip"]').tooltip()
|
||
|
})
|
||
|
|
||
|
// Popovers
|
||
|
$(function () {
|
||
|
$('[data-toggle="popover"]').popover()
|
||
|
})
|
||
|
|
||
|
// Import from Paste 1.9
|
||
|
function showdiv(e) {
|
||
|
document.getElementById(e).style.display = "inline"
|
||
|
}
|
||
|
|
||
|
function selectText(e) {
|
||
|
if (document.selection) {
|
||
|
var t = document.body.createTextRange();
|
||
|
t.moveToElementText(document.getElementById(e));
|
||
|
t.select()
|
||
|
} else if (window.getSelection) {
|
||
|
var t = document.createRange();
|
||
|
t.selectNode(document.getElementById(e));
|
||
|
window.getSelection().addRange(t)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function checkTab(e) {
|
||
|
if (document.all && 9 == event.keyCode) {
|
||
|
e.selection = document.selection.createRange();
|
||
|
setTimeout("processTab('" + e.id + "')", 0)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function processTab(e) {
|
||
|
document.all[e].selection.text = String.fromCharCode(9);
|
||
|
document.all[e].focus()
|
||
|
}
|
||
|
|
||
|
function setSelectionRange(e, t, n) {
|
||
|
if (e.setSelectionRange) {
|
||
|
e.focus();
|
||
|
e.setSelectionRange(t, n)
|
||
|
} else if (e.createTextRange) {
|
||
|
var r = e.createTextRange();
|
||
|
r.collapse(true);
|
||
|
r.moveEnd("character", n);
|
||
|
r.moveStart("character", t);
|
||
|
r.select()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function replaceSelection(e, t) {
|
||
|
if (e.setSelectionRange) {
|
||
|
var n = e.selectionStart;
|
||
|
var r = e.selectionEnd;
|
||
|
e.value = e.value.substring(0, n) + t + e.value.substring(r);
|
||
|
if (n != r) {
|
||
|
setSelectionRange(e, n, n + t.length)
|
||
|
} else {
|
||
|
setSelectionRange(e, n + t.length, n + t.length)
|
||
|
}
|
||
|
} else if (document.selection) {
|
||
|
var i = document.selection.createRange();
|
||
|
if (i.parentElement() == e) {
|
||
|
var s = i.text == "";
|
||
|
i.text = t;
|
||
|
if (!s) {
|
||
|
i.moveStart("character", -t.length);
|
||
|
i.select()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function catchTab(e, t) {
|
||
|
if (navigator.userAgent.match("Gecko")) {
|
||
|
c = t.which
|
||
|
} else {
|
||
|
c = t.keyCode
|
||
|
} if (c == 9) {
|
||
|
var n = e.scrollTop;
|
||
|
replaceSelection(e, String.fromCharCode(9));
|
||
|
stopEvent(t);
|
||
|
e.scrollTop = n;
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function stopEvent(e) {
|
||
|
if (e.preventDefault) {
|
||
|
e.preventDefault()
|
||
|
}
|
||
|
if (e.stopPropagation) {
|
||
|
e.stopPropagation()
|
||
|
}
|
||
|
e.stopped = true
|
||
|
}
|
||
|
|
||
|
var js = {
|
||
|
text: {
|
||
|
lines: function (e) {
|
||
|
return this.getLines(e).length
|
||
|
},
|
||
|
getLines: function (e) {
|
||
|
var t = e.split("\n");
|
||
|
return t
|
||
|
}
|
||
|
},
|
||
|
textElement: {
|
||
|
value: function (e) {
|
||
|
return e.value.replace(/\r/g, "")
|
||
|
},
|
||
|
caretPosition: function (e) {
|
||
|
var t = {};
|
||
|
if (document.selection) {
|
||
|
var n = document.selection.createRange();
|
||
|
var r = document.body.createTextRange();
|
||
|
r.moveToElementText(e);
|
||
|
var i;
|
||
|
for (i = 0; r.compareEndPoints("StartToStart", n) < 0; i++) {
|
||
|
r.moveStart("character", 1)
|
||
|
}
|
||
|
t.start = i;
|
||
|
t.end = i + n.text.replace(/\r/g, "").length
|
||
|
} else if (e.selectionStart || e.selectionStart == 0) {
|
||
|
t.start = e.selectionStart;
|
||
|
t.end = e.selectionEnd
|
||
|
}
|
||
|
return t
|
||
|
},
|
||
|
setCaretPosition: function (e, t) {
|
||
|
e.focus();
|
||
|
if (e.setSelectionRange) {
|
||
|
e.setSelectionRange(t.start, t.end)
|
||
|
} else if (e.createTextRange) {
|
||
|
var n = e.createTextRange();
|
||
|
n.moveStart("character", t.start);
|
||
|
n.moveEnd("character", t.end);
|
||
|
n.select()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
function highlight(e) {
|
||
|
var t = js.textElement.caretPosition(e);
|
||
|
if (!t.start && !t.end) return;
|
||
|
var n = js.text.getLines(js.textElement.value(e));
|
||
|
var r = 0,
|
||
|
i = 0;
|
||
|
var s = "";
|
||
|
var o = false;
|
||
|
var u = 0;
|
||
|
for (var a in n) {
|
||
|
i = r + n[a].length;
|
||
|
if (t.start >= r && t.start <= i) o = true;
|
||
|
if (o) {
|
||
|
var f = n[a].substr(0, 11) == "!highlight!";
|
||
|
if (!u) {
|
||
|
if (f) u = 1;
|
||
|
else u = 2
|
||
|
}
|
||
|
if (u == 1 && f) n[a] = n[a].substr(11, n[a].length - 11);
|
||
|
else if (u == 2 && !f) s += "!highlight!"
|
||
|
}
|
||
|
s = s + n[a] + "\n";
|
||
|
if (t.end >= r && t.end <= i) o = false;
|
||
|
r = i + 1
|
||
|
}
|
||
|
e.value = s.substring(0, s.length - 1);
|
||
|
var l = t.start + (u == 1 ? -11 : 11);
|
||
|
js.textElement.setCaretPosition(e, {
|
||
|
start: l,
|
||
|
end: l
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function togglev() {
|
||
|
if (document.getElementsByTagName("ol")[0].style.listStyle.substr(0, 4) == "none") {
|
||
|
document.getElementsByTagName("ol")[0].style.listStyle = "decimal";
|
||
|
} else {
|
||
|
document.getElementsByTagName("ol")[0].style.listStyle = "none";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getElementsByClassName(e, t) {
|
||
|
if (e.getElementsByClassName) {
|
||
|
return e.getElementsByClassName(t)
|
||
|
} else {
|
||
|
return function n(e, t) {
|
||
|
if (t == null) t = document;
|
||
|
var n = [],
|
||
|
r = t.getElementsByTagName("*"),
|
||
|
i = r.length,
|
||
|
s = new RegExp("(^|\\s)" + e + "(\\s|$)"),
|
||
|
o, u;
|
||
|
for (o = 0, u = 0; o < i; o++) {
|
||
|
if (s.test(r[o].className)) {
|
||
|
n[u] = r[o];
|
||
|
u++
|
||
|
}
|
||
|
}
|
||
|
return n
|
||
|
}(t, e)
|
||
|
}
|
||
|
}
|