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

MilkywayUI

Introduction

MilkywayUI is a MooTools based JavaScript framework, to create applications easy to web or Smart TV platforms. MilkywayUI supports HTML5.

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 header 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