Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.

Commit

Permalink
switch account
Browse files Browse the repository at this point in the history
  • Loading branch information
arifcakiroglu committed Oct 20, 2015
1 parent ea3ae47 commit 8c784d3
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions app/lib/minimal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,42 @@ module.exports = {
setTimeout(function(){
$(".message").slideUp()
}, 3000);
console.log("Succsess")
console.dir(list)


list.forEach(function(e){
//console.dir(e)
})


});


this.client.status(function(err, currentDir){
if (err) throw err;
console.log(currentDir)
});

this.client.lastMod("/htdocs/1.png",function(err, currentDir){
if (err) throw err;
//console.log(currentDir)
});


this.client.cwd("/htdocs/stylesheets",function(err, currentDir){
if (err) throw err;
console.log(currentDir)
//console.log(currentDir)
});



this.client.pwd(function(err, currentDir){
if (err) throw err;
console.log(currentDir)
//console.log(currentDir)
});
this.client.listSafe(function(err, currentDir){
if (err) throw err;
//console.dir(currentDir)
});


},
ready: function(){
Expand Down

0 comments on commit 8c784d3

Please sign in to comment.