i have small application in Famo.us
I have following code..
draggable.on('update',function(data){
var pos =data.position;
var t = pos.split(",");
});
In above code, data.position return result in x,y
format,
i just want to check x value whether it is greater than 0 or not. For that i have used split function. but it doesn't work..
How to use Split and substring functions in Famp.us