Wouldn't this also conflict with chatting, making that less seamless?
Currently you can just start typing on the keyboard, you'd have to implement a command to enable chat, or click the chat bar and back to the canvas (but then doesn't that beat the whole idea if people are already clicking the...
Hey, he's saying to parse some data in the console.log function inside JavaScript within your code, to see what results your getting. This will hopefully help you identify where and what it's going wrong.
Also, Atom (the cms you use) has alot of dedicated people helping to translate it into all languages. Norwegian being one of them. So the fact Justin also charged you for him to do that is also a straight scam because someone already went through the long process to do that for free.
Using the person I'd is probably better, ignore my last comment. So the button needs an id=person.id and the element needs an id="myDiv-" + person.id
Then document.getElementById('myDiv-' + e.target.id); should work in getting the correct element.
You're issue is you have no way to distinguish which content you're getting. Since you have 2 elements with the id "myDiv", it always returns the first one.
What you need to do is create a unique id (a counter works) and parse that into your element, something like "myDiv-{count}". Then give...
I think he's refering to the Flash client in general.
While Nitro is amazing, you're right in saying it's not completely accurate, and since it's goal is to mimic the flash client as close as possible, we too should be targeting the flash client first.
By doing this we can better identify what...
What's your goal? To learn to program by making small edits? Or to customize the server?
I think if you're trying to learn, it'll be best to bight the bullet and set one up yourself, it will be tough at first and you may get errors. But you'll learn so much more than having someone do it for...
Define "quick pathfinder", a quick pathfinder would be one that has no logic attached to it, which I doubt you'd want. I think the biggest issue with current A* pathfinders is most of them currently recalculate the path on step in case of new obstructions. This could be where you start with your...
Honestly, for a dating website this is incredibly dull and boring.
The website should be exciting, nice vibrant colours and images. You should also try experiment with more shapes in your design to make it fun. Everything at the moment is very flat and modular.
Don't get me wrong though the...
Comparing speed not using the same conditions to make yours look better, is misleading and plain narcissistic when trying to compare it with other peoples work.
Spend more time focusing on your own work than what other people are doing.
Minus that, the responsiveness when changing pages does...
$shirts_total = ($shirts += 'SHIRT_PRICE')
Should be:
$shirts_total = ($shirts += SHIRT_PRICE)
By adding the single quotes you're not returning the value from the constant, you're creating a string with the same name.
Catalog is now working after spending ages trying to figure out why it wasn't (hint: I was being an idiot). The catalog is setup so that it can handle multiple different modes, modes being the normal catalog, builders club and any other additional modes you'd want in the future. This means not...