Bez popisu

Herbert Vojčík 5e45e0588d README: clerification on DOM API used and shims needed před 8 roky
src 2882352c55 renames, bump dependencies před 9 roky
.gitignore c9ad4dd18e config.js and the.js in .gitignore před 9 roky
Gruntfile.js 2afa510041 Gruntfile.js does not need Web před 9 roky
LICENSE-MIT 1040e6dcd9 Initial commit před 9 roky
README.md 5e45e0588d README: clerification on DOM API used and shims needed před 8 roky
bower.json 795d73c89d bump helios před 8 roky
deploy.js 2882352c55 renames, bump dependencies před 9 roky
devel.js 2882352c55 renames, bump dependencies před 9 roky
index.html 1040e6dcd9 Initial commit před 9 roky
local.amd.json 32a9e0a67f fix incorrect map section in .amd.json před 9 roky
package.json ba9f14e542 Release version 0.3.1 před 9 roky

README.md

Lite mite wrapping basic DOM for Amber Smalltalk

Lite mite wrapping basic DOM for Amber Smalltalk.

It uses a selection of raw DOM API to perform tasks; it does not use any cross-browser library. To work on IE8 (or other non-compliant browser), include amber-compat-es5 and also shim event API (https://github.com/jonathantneal/EventListener looks good).

Getting Started

  • Install Amber (Instructions)
  • Do amber init
  • bower install amber-contrib-domite --save
  • grunt devel
  • Start server with amber serve and go to http://localhost:4000/

This makes modules from amber/domite namespace loadable.

To do so in the Helios IDE change the imports: section of your packages which use Domite to imports: {'amber/domite/DOMite'}.

Or you may add it to the deploy.js / devel.js files. The former is preferred because of an easier deployment process.

Contributing

To bring project alive (for example after git clone):

npm install
bower install
grunt devel

Developing the project (after brought alive):

Start server with amber serve and go to http://localhost:4000/ in your browser and follow the instructions