Bernhard Weichel
Bernhard Weichel
Yes, windows 8; it also is on Windows 10 (which has a new console)
too bad, this issue still exists. I wonder if I am the only one with this problem
Thanks, it might solve the colors but not the other issues * prompt is somehow broken - it seems that a false escape sequence is submitted * the very initial...
I tried with Powershell and had the same problem. Maybe it is because of problems in Readline. Maybe we could try to turn off the coloring at all
I would like to see examples how to manage access_tokens in web applications. I would like to see an approach which is as transparent as possible for the user while...
Definitely missing an exmple equvalent to ```javascxript client.readFile("hello_world.txt", function(error, data) { if (error) { return showError(error); // Something went wrong. } alert(data); // data has the file's contents }); ```
@ppietak In V1 it was very simple. With V2 I find it rather not simple ... Just found this solution ``` javascript %x{#@root.filesDownload({path: #{filename}}) .then(function(response){ reader = new FileReader(); reader.addEventListener("loadend",...
@tracycollins Did you see comment https://github.com/dropbox/dropbox-sdk-js/issues/14#issuecomment-275947685 This works with any text file. I use this for ABC-code. the pure javascript is ```javascript filesDownload({path:"foo.txt"}) .then(function(response){ reader = new FileReader(); reader.addEventListener("loadend", function(){...
filesDownload returns a promise! you need to understand how promises work (see https://developers.google.com/web/fundamentals/primers/promises for an introduction). Long story short. filesDownload returns immediateley, even if it works asynchroneouslly. You need to...
It depends on the file exension if dropbox handles a file as textfile. In my case I use ".abc" which I got registered through support at Dropbox. Maybe your file...