mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Delete docs and Travis
This commit is contained in:
parent
ada732015e
commit
bc3304bed5
@ -1 +0,0 @@
|
||||
language: node_js
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "insomnia",
|
||||
"version": "3.0.12",
|
||||
"version": "3.0.13",
|
||||
"productName": "Insomnia",
|
||||
"longName": "Insomnia HTTP Client",
|
||||
"description": "The best REST API Client",
|
||||
|
@ -143,6 +143,13 @@ class Editor extends Component {
|
||||
* @param doc CodeMirror document
|
||||
*/
|
||||
_codemirrorValueChanged (doc) {
|
||||
|
||||
// Don't trigger change event if we're ignoring changes
|
||||
if (this._ignoreNextChange || !this.props.onChange) {
|
||||
this._ignoreNextChange = false;
|
||||
return;
|
||||
}
|
||||
|
||||
// Debounce URL changes so we don't update the app so much
|
||||
clearTimeout(this._timeout);
|
||||
this._timeout = setTimeout(() => {
|
||||
@ -150,12 +157,6 @@ class Editor extends Component {
|
||||
var newValue = doc.getValue();
|
||||
this._currentCodemirrorValue = newValue;
|
||||
|
||||
// Don't trigger change event if we're ignoring changes
|
||||
if (this._ignoreNextChange || !this.props.onChange) {
|
||||
this._ignoreNextChange = false;
|
||||
return;
|
||||
}
|
||||
|
||||
this.props.onChange(newValue);
|
||||
}, DEBOUNCE_MILLIS)
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ function buildRequestConfig (request, patch = {}) {
|
||||
// Setup redirect rules
|
||||
followAllRedirects: true,
|
||||
maxRedirects: 20,
|
||||
timeout: -1,
|
||||
timeout: 0,
|
||||
|
||||
// Unzip gzipped responses
|
||||
gzip: true,
|
||||
|
14
book.json
14
book.json
@ -1,14 +0,0 @@
|
||||
{
|
||||
"gitbook": "3.x.x",
|
||||
"title": "Insomnia Rest Client",
|
||||
"root": "docs",
|
||||
"structure": {
|
||||
"summary": "README.md"
|
||||
},
|
||||
"plugins": ["prism", "-highlight", "github", "anker-enable"],
|
||||
"pluginsConfig": {
|
||||
"github": {
|
||||
"url": "https://github.com/gschier/insomnia/"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
Summary
|
||||
=======
|
||||
|
||||
- [Installation](/installation.md)
|
@ -1,3 +0,0 @@
|
||||
# Installation
|
||||
|
||||
This is how you install Insomnia.
|
Loading…
Reference in New Issue
Block a user