Subversion Repositories eFlore/Applications.cel

Rev

Blame | Last modification | View Log | RSS feed

// Decode html entities
String.prototype.htmlEntitiesWidgets = function () {
    const temp = document.createElement("div");

    temp.innerHTML = this;

    const result = temp.childNodes[0].nodeValue;

    temp.removeChild(temp.firstChild);

    return result;
};