Skip to content
This repository was archived by the owner on Apr 22, 2018. It is now read-only.

Commit 927ffcb

Browse files
committed
Merge pull request #4 from electerious/v2.0.0
v2.0.0
2 parents c5e5d7a + bbd19df commit 927ffcb

File tree

18 files changed

+443
-454
lines changed

18 files changed

+443
-454
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "basicModal",
3-
"version": "1.4.1",
3+
"version": "2.0.0",
44
"authors": [
55
"Tobias Reich <[email protected]>"
66
],

dist/basicModal.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/basicModal.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
var gulp = require('gulp'),
2-
plugins = require("gulp-load-plugins")();
2+
plugins = require('gulp-load-plugins')();
33

4-
gulp.task('sass', function () {
4+
gulp.task('styles', function () {
55

6-
gulp.src('./src/scss/main.scss')
6+
gulp.src('./src/styles/main.scss')
77
.pipe(plugins.sass())
88
.pipe(plugins.concat('basicModal.min.css', {newLine: "\n"}))
9-
.pipe(plugins.autoprefixer("last 2 version", "> 1%"))
9+
.pipe(plugins.autoprefixer('last 2 version', '> 1%'))
1010
.pipe(plugins.minifyCss())
1111
.pipe(gulp.dest('./dist'));
1212

1313
});
1414

15-
gulp.task('coffee', function () {
15+
gulp.task('scripts', function () {
1616

17-
gulp.src('./src/coffee/*.coffee')
17+
gulp.src('./src/scripts/*.coffee')
1818
.pipe(plugins.coffee({bare: true}).on('error', plugins.util.log))
1919
.pipe(plugins.concat('basicModal.min.js', {newLine: "\n"}))
2020
.pipe(plugins.uglify())
2121
.pipe(gulp.dest('./dist'));
2222

2323
});
2424

25-
gulp.task('default', ['sass', 'coffee']);
25+
gulp.task('default', ['styles', 'scripts']);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "basicModal",
3-
"version": "1.4.1",
3+
"version": "2.0.0",
44
"authors": [
55
"Tobias Reich <[email protected]>"
66
],

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Easy-to-use dialog system for modern web-apps.
44

5-
![Modal Screenshot](http://l.electerious.com/uploads/big/b7c495109ae6b213b8367bdd7815c68a.png)
5+
![Modal Screenshot](http://l.electerious.com/uploads/big/7159e3679c7f52dd5be899cc476c2e72.png)
66

77
basicModal is a dialog-system for modern web-apps. It includes everything you need to display information, ask questions or request input from the user. Modals can be chained, so you can easily build a setup-assistant or show dialogs in a predefined order. Invalid input can be highlighted and handled using the included function.
88

src/coffee/basicModal.coffee

Lines changed: 0 additions & 229 deletions
This file was deleted.

0 commit comments

Comments
 (0)