Delete docs and Travis

This commit is contained in:
Gregory Schier 2016-07-28 17:24:05 -07:00
parent ada732015e
commit bc3304bed5
7 changed files with 9 additions and 30 deletions

View File

@ -1 +0,0 @@
language: node_js

View File

@ -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",

View File

@ -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)
}

View File

@ -17,7 +17,7 @@ function buildRequestConfig (request, patch = {}) {
// Setup redirect rules
followAllRedirects: true,
maxRedirects: 20,
timeout: -1,
timeout: 0,
// Unzip gzipped responses
gzip: true,

View File

@ -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/"
}
}
}

View File

@ -1,4 +0,0 @@
Summary
=======
- [Installation](/installation.md)

View File

@ -1,3 +0,0 @@
# Installation
This is how you install Insomnia.