Skip to content
/ nui2 Public

small javascript ui framework built by someone who hates javascript.

Notifications You must be signed in to change notification settings

netherjs/nui2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nether UI 2

Work in progress.

Requirements

  • jQuery 3.5
  • Bootstrap 4.5
  • Font Awesome 5

Testing

$ composer install $ php -S localhost:80 -t www .

Example Use

import Dialog from "./nui/element/dialog.js";
import Button from "./nui/element/button.js";

new Dialog({
	'Modal': true,
	'Title': 'Do you?',
	'Icon': 'fas fa-question-circle',
	'Content': 'Well?',
	'Buttons': [
		new Button({
			'Text':'Probably',
			'Class': 'NUI-Action-Accept'
		})
	]
})
.Register(
	'Accept', 'AppOnAccept',
	function(){ this.Close(); return; }
)

About

small javascript ui framework built by someone who hates javascript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published