Trait

mhtml

DevSettings

Related Doc: package mhtml

Permalink

trait DevSettings extends MountSettings

Developement mode. Warns about unknown elements/attributes/events/EntityRef.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DevSettings
  2. MountSettings
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. lazy val attributes: Array[String]

    Permalink

    Valid HTML attributes, sorted according to Ordering[String] to be binary searchable.

    Valid HTML attributes, sorted according to Ordering[String] to be binary searchable. Source: http://www.w3schools.com/tags/ref_attributes.asp.

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. lazy val elements: Array[String]

    Permalink

    Valid HTML elements, sorted according to Ordering[String] to be binary searchable.

    Valid HTML elements, sorted according to Ordering[String] to be binary searchable. Source: https://developer.mozilla.org/en-US/docs/Web/HTML.

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. lazy val events: Array[String]

    Permalink

    Valid events, sorted according to Ordering[String] to be binary searchable.

    Valid events, sorted according to Ordering[String] to be binary searchable. Source: http://w3c.github.io/html/dom.html.

  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def inspectAttributeKey(att: String): Unit

    Permalink

    Used to attribute keys (id="1") before mounting them to the DOM.

    Used to attribute keys (id="1") before mounting them to the DOM.

    Definition Classes
    DevSettingsMountSettings
  15. def inspectElement(elem: String): Unit

    Permalink

    Used to inspect HTML element before mounting them to the DOM.

    Used to inspect HTML element before mounting them to the DOM.

    Definition Classes
    DevSettingsMountSettings
  16. def inspectEvent(event: String): Unit

    Permalink

    Used to inspect events handlers (onclick={() => ()}) before attaching them to the DOM.

    Used to inspect events handlers (onclick={() => ()}) before attaching them to the DOM.

    Definition Classes
    DevSettingsMountSettings
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def isKnown(entityName: String, knownEntites: Array[String], entityValue: String): Unit

    Permalink

    Warns about unknown entities.

  19. def levenshtein(s1: String)(s2: String): Int

    Permalink

    Levenshtein distance.

    Levenshtein distance. Implementation based on Wikipedia's algorithm.

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def transformEntityRef(entityRef: String): String

    Permalink

    Used to transform EntityRef (λ) before mounting them to the DOM.

    Used to transform EntityRef (λ) before mounting them to the DOM.

    Definition Classes
    DevSettingsMountSettings
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def warn(message: String): Unit

    Permalink

Inherited from MountSettings

Inherited from AnyRef

Inherited from Any

Ungrouped