Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/astares/seaside-addtohomescreen

Seaside wrapper for http://cubiq.org/add-to-home-screen
https://github.com/astares/seaside-addtohomescreen

pharo seaside

Last synced: 4 days ago
JSON representation

Seaside wrapper for http://cubiq.org/add-to-home-screen

Awesome Lists containing this project

README

        

# Seaside-AddToHomeScreen
Seaside wrapper for http://cubiq.org/add-to-home-screen

## Quick Start

### Installation
First you need to load Seaside, here we load the development version:

```Smalltalk
Metacello new
baseline:'Seaside3';
repository: 'github://SeasideSt/Seaside:develop/repository';
load.
```

for any other have a look at [https://github.com/SeasideSt/Seaside](https://github.com/SeasideSt/Seaside).

Then load AddToHomeScreen

```Smalltalk
Metacello new
baseline:'AddToHomeScreen';
repository: 'github://astares/AddToHomeScreen:master/src';
load.
```

## Usage
Just call the addToHomescreen() in your entry component

```Smalltalk
renderContentOn: html

html render: loginPage.
html script: 'addToHomescreen();'
```