Hacker News new | past | comments | ask | show | jobs | submit login

Here is a little JS snippet you can adapt to filter the list down to remove the procedures not supported by a particular profile you want to view.

    Array.prototype.filter.call(document.querySelectorAll(".disabled"), function(v){return v.innerHTML === "es2";}).forEach(function(v){v.parentElement.parentElement.removeChild(v.parentElement);});
Notice the "es2", that is where you select the profile.



Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: