timmy
timmy

Reputation: 488

In what is the pip.io UI built?

Can anyone tell me if the http://pip.io UI is built in AJAX or only JavaScript?

The reason I ask this is that I noticed the UI is scalable in the browser. So with different screen resolutions it displays the same.

Upvotes: 0

Views: 109

Answers (2)

chenosaurus
chenosaurus

Reputation: 2403

We set the minimal height and width to accomodate for the design. It is a technical decision because at a smaller resolution, some areas won't be able to render properly. Also since most monitors are at least 1024px wide it shouldn't be an issue with most users.

Upvotes: 0

David Chen
David Chen

Reputation: 26

Do you mean scalable as in it works with multiple resolutions? The UI is designed with CSS which allows it to do so. The rest of the frontend is built with Mootools, which handles all the fancy animations and api calls.

Upvotes: 1

Related Questions