2016-04-06 01:46:22 +02:00
|
|
|
//META{"name":"dblClickEdit"}*//
|
|
|
|
|
|
|
|
var dblClickEdit = function () {};
|
|
|
|
|
|
|
|
dblClickEdit.prototype.onMessage = function () {
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.onSwitch = function () {
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.start = function () {
|
|
|
|
$(document).on("dblclick.dce", function(e) {
|
|
|
|
var target = $(e.target);
|
|
|
|
if(target.parents(".message").length > 0) {
|
|
|
|
var msg = target.parents(".message").first();
|
|
|
|
var opt = msg.find(".btn-option");
|
|
|
|
opt.click();
|
2016-06-24 01:12:41 +02:00
|
|
|
|
|
|
|
$.each($(".popout .btn-item"), (index, value) => {
|
|
|
|
var option = $(value);
|
|
|
|
if(option.text() === "Edit") {
|
|
|
|
option.click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-06 01:46:22 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
dblClickEdit.prototype.load = function () {};
|
|
|
|
dblClickEdit.prototype.unload = function () {
|
|
|
|
$(document).off("dblclick.dce");
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.stop = function () {
|
|
|
|
$(document).off("dblclick.dce");
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.getSettingsPanel = function () {
|
|
|
|
return "";
|
|
|
|
};
|
|
|
|
|
|
|
|
dblClickEdit.prototype.getName = function () {
|
|
|
|
return "Double click edit";
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.getDescription = function () {
|
|
|
|
return "Double click messages to edit them";
|
|
|
|
};
|
|
|
|
dblClickEdit.prototype.getVersion = function () {
|
2016-06-24 01:13:18 +02:00
|
|
|
return "0.1.1";
|
2016-04-06 01:46:22 +02:00
|
|
|
};
|
|
|
|
dblClickEdit.prototype.getAuthor = function () {
|
|
|
|
return "Jiiks";
|
|
|
|
};
|