Skip to content
laze edited this page Aug 23, 2012 · 11 revisions

MilkywayUI

Introduction

MilkywayUI is a MooTools based JavaScript framework, to create applications easy to web or Smart TV platforms. This framework has a brunch of different re-usable UI components what makes your job much easier, components what we need on almost every project, like popups, help bars, panels, buttons, etc...
To learn more about MilkywayUI see API documentations.
To learn more about MilkywayUI's hierarchy see developer specifications.

Quick Setup

  1. Create a project directory structure. MilkywayUI will recognize its location, but you have to decide wherever want you put it. Let's say your_project/js
  2. Download the MooTools framework.
  3. Download MilkywayUI or pull it from the repository.
  4. Create and index.html file. On <head>...</head> part of that, set up the MilkywayUI's path and your application's path:
 <script id="MilkywayUI" type="text/javascript" src="js/milkyway/core.js">
 </script>
 <script id="MilkywayApp" type="text/javascript" src="js/demo/demo.js">
 </script>

Please note, Mootools must be included previously! The id's of these two tags is very important, please don't forget them.

Clone this wiki locally