You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can specify the event priority after each event syntax using the following syntax <code>[with priority (lowest|low|normal|high|highest|monitor)]</code> e.g. <code>on spawn with priority lowest</code>.<br>
8
+
Note that not all of the events support event priority feature and they will throw an error.
regex.test(desc)||regex.test(keywords)||"#"+id==searchValue||searchValue=="")&&filtersFound){// Replacing '[ ]' will improve some searching cases such as 'off[ ]hand'
288
+
regex.test(desc)||regex.test(keywords)||"#"+id.toLowerCase()==searchValue.toLowerCase()||searchValue=="")&&filtersFound){// Replacing '[ ]' will improve some searching cases such as 'off[ ]hand'
289
289
pass=true
290
290
break;// Performance
291
291
}
@@ -390,7 +390,7 @@ if (examples) {
390
390
391
391
// <> Cookies Accecpt
392
392
if(!isCookiesAccepted){
393
-
content.insertAdjacentHTML('beforeend',`<div id="cookies-bar"> <p> We use cookies and local storage to enhance your browsing experience and store github related statistics. By clicking "Accept", you consent to our use of cookies and local storage. </p><div style="padding: 10px; white-space: nowrap;"> <button id="cookies-accept">Accept</button> <button id="cookies-deny">Deny</button> </div></div>`);
393
+
document.body.insertAdjacentHTML('beforeend',`<div id="cookies-bar"> <p> We use cookies and local storage to enhance your browsing experience and store github related statistics. By clicking "Accept", you consent to our use of cookies and local storage. </p><div style="padding: 10px; white-space: nowrap;"> <button id="cookies-accept">Accept</button> <button id="cookies-deny">Deny</button> </div></div>`);
0 commit comments