jsext icon indicating copy to clipboard operation
jsext copied to clipboard

Commonly-useful extensions for Scala.js, particularly for facade development

Results 5 jsext issues
Sort by recently updated
recently updated
newest added

For example the columns option in https://datatables.net/examples/api/row_details.html ``` @js.native trait DataTableOptions extends js.Object object DataTableOptions extends DataTableOptionsBuilder(noOpts) class DataTableOptionsBuilder(val dict: OptMap) extends JSOptionBuilder[DataTableOptions, DataTableOptionsBuilder](new DataTableOptionsBuilder(_)) { def columns(obj: js.Array[js.Object]) =...

JSOptionsOpts defined in the ReadMe is not in the repo - not sure how to handle inheritance without it: ``` @ScalaJSDefined trait DialogOptions extends WidgetOptions object DialogOptions extends DialogOptionsBuilder(noOpts) class...

You mentioned this in the TODO Done it with https://github.com/lihaoyi/sourcecode e.g. ``` import sourcecode.Name trait SCOptionSetter[T

There are a couple of questions before I PR this that are probably worth checking. - Scala.js is currently at `0.6.5`\- `scala-js-dom` requires `0.6.7` currently. Is it okay to upgrade?...