diff --git a/alternate-views.md b/alternate-views.md index 57f756c..d43215d 100644 --- a/alternate-views.md +++ b/alternate-views.md @@ -47,7 +47,7 @@ Dashy supports several different ways to launch your apps. The primary opening m - `sametab` - The app will be launched in the current tab - `newtab` - The app will be launched in a new tab -- `top` - Opens in the top-most browsing context, useful if your accessing Dashy through an iframe +- `top` - Opens in the top-most browsing context, useful if you're accessing Dashy through an iframe - `modal` - Launch app in a resizable/ movable popup modal on the current page - `workspace` - Changes to Workspace view, and launches app diff --git a/credits.md b/credits.md index bdf5726..e5df8f4 100644 --- a/credits.md +++ b/credits.md @@ -54,6 +54,13 @@ Ulises Gascón + + + digitalarche +
+ Digital Archeology +
+ bmcgonag @@ -81,20 +88,13 @@
Null
- - - - Bastii717 -
- Null -
- - MikaPST + + Bastii717
- Michaël + Null
@@ -282,14 +282,21 @@ Totto16 + + + wozboz +
+ Null +
+ + alucarddelta
Brent
- - + berksmbl @@ -324,15 +331,15 @@
Rúben Silva
- + + rtm516
Rtm516
- - + zcq100 @@ -367,15 +374,15 @@
Stephen Rigney
- + + moemoeq
CHAIYEON CHO
- - + daentech @@ -410,21 +417,14 @@
Null
- + + patrickheeney
Patrick Heeney
- - - - - wozboz -
- Null -
diff --git a/development-guides.md b/development-guides.md index 0d62941..11d8634 100644 --- a/development-guides.md +++ b/development-guides.md @@ -313,7 +313,7 @@ export default { All widgets extend from the [Widget](https://github.com/Lissy93/dashy/blob/master/src/mixins/WidgetMixin.js) mixin. This provides some basic functionality that is shared by all widgets. The mixin includes the following `options`, `startLoading()`, `finishLoading()`, `error()` and `update()`. - **Getting user options: `options`** - - Any user-specific config can be accessed with `this.options.something` (where something is the data key your accessing) + - Any user-specific config can be accessed with `this.options.something` (where something is the data key you're accessing) - **Loading state: `startLoading()` and `finishLoading()`** - You can show the loader with `this.startLoading()`, then when your data request completes, hide it again with `this.finishLoading()` - **Error handling: `error()`** @@ -341,7 +341,7 @@ computed: { #### **Adding an API Endpoint** -If your widget makes a data request, then add the URL for the API under point to the `widgetApiEndpoints` array in [`defaults.js`](https://github.com/Lissy93/dashy/blob/master/src/utils/defaults.js#L207) +If your widget makes a data request, then add the URL for the API endpoint to the `widgetApiEndpoints` array in [`defaults.js`](https://github.com/Lissy93/dashy/blob/master/src/utils/defaults.js#L207) ```javascript widgetApiEndpoints: { @@ -410,7 +410,7 @@ Now that the results are in the correct format, and stored as data variables, we #### **Styling** -Styles can be written your your widget within the `