From 892f29d162793a8d2221a14f89920634fba6b48e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 7 Apr 2019 16:05:27 -0400 Subject: [PATCH 01/10] spelling: destroy --- misc/faq.html | 2 +- src/templates/misc/faq.handlebars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/faq.html b/misc/faq.html index 29b3aaf..6363378 100644 --- a/misc/faq.html +++ b/misc/faq.html @@ -169,7 +169,7 @@

-'); diff --git a/src/templates/misc/faq.handlebars b/src/templates/misc/faq.handlebars index 32e6eb3..3441bd3 100644 --- a/src/templates/misc/faq.handlebars +++ b/src/templates/misc/faq.handlebars @@ -28,7 +28,7 @@ }, deleteRow: function(e) { e.preventDefault(); - this.model.destory(); + this.model.destroy(); }, render: function () { this.$el.html(''); From 393c90652ff4b8fcce9928650f02dfe4e548dd80 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 7 Apr 2019 16:05:49 -0400 Subject: [PATCH 02/10] spelling: development --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59c0f1e..6425ba2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ How to build ============ ```sh -# Build for developement +# Build for development $ npm run build # Start the Webpack dev server From 8fac73bf0433f50ffa96156e6b3962b6e0a3d30f Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 7 Apr 2019 16:06:07 -0400 Subject: [PATCH 03/10] spelling: editability --- misc/faq.html | 2 +- src/templates/misc/faq.handlebars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/faq.html b/misc/faq.html index 6363378..1ba2708 100644 --- a/misc/faq.html +++ b/misc/faq.html @@ -159,7 +159,7 @@

How do I write a cell that renders a button?

It is quite common to want to use a cell that acts on an entire row. You may want to pop up a modal, delete the row, or toggle - editibility for all the columns. The possibilities are endless. For + editability for all the columns. The possibilities are endless. For those cases, you can write a custom ActionCell, and then pass it to the column definition.