You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hide-parameter.js 196B

123456789
  1. import { Param } from "./parameter";
  2. export class HideParam extends Param
  3. {
  4. constructor(){
  5. super();
  6. this.code = "br-hide";
  7. this.selectors = ["table","p","h4"];
  8. }
  9. }