View on GitHub

Quick, simple, minimalist JS app framework for browsers

Download as a .zip file Download as a tar.gz file

Introduction

QkApp is a minimalist Web browser / JS app framework built on BootStrap and JQuery.

Basic Usage

var app = new QkApp($, {});
window.alert = app.show_dialog.bind(app);

QkApp Components

Basic Usage:-

var app = new QkApp(
	$, /* the jQuery object, for name conflict resolution */
	{} /* the options object. For UI only usage, defaults are sufficient. */
);
window.alert = app.show_alert.bind(app);