Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sveneberth committed Aug 16, 2016
1 parent 87fc92a commit 0b2bddf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
### Addded
nothing since last release


## [1.0.4] - 2016-08-16
### Added
- Functions
- Scroller
- formatBytes
Expand All @@ -16,5 +20,6 @@ All notable changes to this project will be documented in this file.
- Changelog started here


[Unreleased]: https://github.com/viur-ignite/viur-ignite-js/compare/1.0.3...develop
[Unreleased]: https://github.com/viur-ignite/viur-ignite-js/compare/1.0.4...master
[1.0.4]: https://github.com/viur-ignite/viur-ignite-js/compare/1.0.3...1.0.4
[1.0.3]: https://github.com/viur-ignite/viur-ignite-js/compare/9ea72d71e86f4ed4d05c9cf36d7a6e2148216437...1.0.3
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[![npm version](https://badge.fury.io/js/viur-ignite-js.svg)](https://badge.fury.io/js/viur-ignite-js)
[![Dependency Status](https://david-dm.org/viur-ignite/viur-ignite-js.svg)](https://david-dm.org/viur-ignite/viur-ignite-js)
[![Build Status](https://travis-ci.org/viur-ignite/viur-ignite-js.svg?branch=develop)](https://travis-ci.org/viur-ignite/viur-ignite-js)
[![Build Status](https://travis-ci.org/viur-ignite/viur-ignite-js.svg)](https://travis-ci.org/viur-ignite/viur-ignite-js)
[![GitHub license](https://img.shields.io/badge/license-GPL-blue.svg)](https://raw.githubusercontent.com/viur-ignite/viur-ignite-js/master/LICENSE)

# VIUR Ignite JS

>The ViUR Ignite Framework is the first attempt in building a sturdy foundation for ViUR products and Mausbrand projects.<br>This CSS toolkit is the very core of ViUR Ignite. It is built upon the principles of many CSS guides and frameworks.
VIUR Ignite JS is an extenstion to [VIUR Ignite CSS](https://github.com/viur-ignite/viur-ignite-css). It's a simple JavaScript libary based on jQuery.

For a detailed introduction on the ViUR ignite framework and examples have a look at [http://ignite.viur.is](http://ignite.viur.is).


## Install
```
$ npm install viur-ignite-js
Expand Down
11 changes: 7 additions & 4 deletions js/viur.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
/**
* VIUR JS FRAMEWORK
* VIUR JS FRAMEWORK v1.0.4
*
* http://ignite.viur.is
* https://github.com/viur-ignite/viur-ignite-js
*
* Copyleft Mausbrand Infosys
* Released under the GLP-3.0 license
*/
Expand Down Expand Up @@ -160,7 +162,7 @@ $(function() {

// create overlay if doesnt exist
if (! $('.popup-overlay').elementExist() )
$('body').append('<div class="popup-overlay"></div>');
$('body').append('<div class="popup-overlay" style="display:none"></div>').show();

// remove other popups
$('.popup').remove();
Expand Down Expand Up @@ -191,7 +193,8 @@ $(function() {

var $popup = $(popup)
.popup({onOpen: options.onOpen, onClose: options.onClose})
.appendTo('body');
.appendTo('body')
.show();

// action by buttons with data-index
$popup.find('.formActions > button[data-index]').on('click', function () {
Expand All @@ -202,7 +205,7 @@ $(function() {
});

function __getPopupPrototype() {
return '<div class="popup">\
return '<div class="popup" style="display:none">\
<div class="popup-box">\
<header class="popup-header">{{header}}</header>\
<div class="popup-content">\
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "viur-ignite-js",
"version": "1.0.3",
"version": "1.0.4",
"description": "Javascript Libary | Extension of viur-ignite-css",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 0b2bddf

Please sign in to comment.