Lines Matching refs:popup
40 var popup = new jiPopup(this);
41 popup.create();
42 popup.show(this);
44 if (popup.key) popup.getDataByKey();
50 self.setDisplayNone = function(popup) { argument
51 setTimeout(function() { popup.style.display = "none"; }, 50);
52 popup.classList.remove(CONF.animation+"-in");
53 popup.classList.add(CONF.animation+"-out");
115 var popup = document.getElementById(this.getAttribute("data-target")),
118 popup.onmouseover = function () {
123 popup.onmouseout = function () {
162 const popup = document.createElement("div");
163 popup.className = "ji-popup "+ CONF.animation +" "+ CONF.animation +"-out";
164 popup.id = this.id;
165 popup.appendChild(this.setArrowElement());
166 popup.appendChild(this.setPopContent());
167 document.body.appendChild(popup);
174 const popup = this.getPopElemByName();
177 popup.style.display = "block";
179 popup.classList.remove(CONF.animation + "-out");
180 popup.classList.add(CONF.animation + "-in");