Subversion Repositories eFlore/Applications.cel

Rev

Rev 3845 | Blame | Compare with Previous | 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;
};