Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Commit

Permalink
bump 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vesparny committed May 20, 2015
1 parent 78d0215 commit 86c286c
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.1.4 (2015-05-20)

* fixing typos

### 0.1.3 (2015-05-20)

* fixing parent scope destroy
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"authors": [
"Alessandro Arnodo <alessandro@arnodo.net> (http://alessandro.arnodo.net)"
],
"version": "0.1.3",
"version": "0.1.4",
"homepage": "https://github.com/vesparny/angular-fancy-modal",
"description": "the definitive modal/popup/dialog solution for AngularJS.",
"main": [
Expand Down
6 changes: 5 additions & 1 deletion dist/angular-fancy-modal-theme-classic.css
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
* angular-fancy-modal - the definitive modal/popup/dialog solution for AngularJS.
* @author Alessandro Arnodo
* @url http://alessandro.arnodo.net
* @version v0.1.2
* @version v0.1.4
* @link https://github.com/vesparny/angular-fancy-modal
* @license MIT
*/
.fancymodal.fancymodal-theme-classic .fancymodal-content {
max-width: 420px;
background-color: #000;
color: #fff; }

.fancymodal.fancymodal-theme-classic .fancymodal-content-opening {
-webkit-animation: fancymodal-in 1s;
animation: fancymodal-in 1s; }

.fancymodal.fancymodal-theme-classic .fancymodal-content-closing {
-webkit-animation: fancymodal-out 1s;
animation: fancymodal-out 1s; }

.fancymodal.fancymodal-theme-classic .fancymodal-overlay-opening {
-webkit-animation: fancymodal-fadeIn 1s;
animation: fancymodal-fadeIn 1s; }

.fancymodal.fancymodal-theme-classic .fancymodal-overlay-closing {
-webkit-animation: fancymodal-fadeOut 1s;
animation: fancymodal-fadeOut 1s; }
2 changes: 1 addition & 1 deletion dist/angular-fancy-modal-theme-classic.min.css
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* angular-fancy-modal - the definitive modal/popup/dialog solution for AngularJS.
* @author Alessandro Arnodo
* @url http://alessandro.arnodo.net
* @version v0.1.2
* @version v0.1.4
* @link https://github.com/vesparny/angular-fancy-modal
* @license MIT
*/
Expand Down
17 changes: 8 additions & 9 deletions dist/angular-fancy-modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* angular-fancy-modal - the definitive modal/popup/dialog solution for AngularJS.
* @author Alessandro Arnodo
* @url http://alessandro.arnodo.net
* @version v0.1.2
* @version v0.1.4
* @link https://github.com/vesparny/angular-fancy-modal
* @license MIT
*/
Expand Down Expand Up @@ -92,62 +92,61 @@ body.fancymodal-open {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }

100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }

@keyframes fancymodal-in {
0% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); }

100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }

@-webkit-keyframes fancymodal-out {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }

100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }

@keyframes fancymodal-out {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }

100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }

@-webkit-keyframes fancymodal-fadeIn {
0% {
opacity: 0; }

100% {
opacity: 1; } }

@keyframes fancymodal-fadeIn {
0% {
opacity: 0; }

100% {
opacity: 1; } }

@-webkit-keyframes fancymodal-fadeOut {
0% {
opacity: 1; }

100% {
opacity: 0; } }

@keyframes fancymodal-fadeOut {
0% {
opacity: 1; }

100% {
opacity: 0; } }
2 changes: 1 addition & 1 deletion dist/angular-fancy-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* angular-fancy-modal - the definitive modal/popup/dialog solution for AngularJS.
* @author Alessandro Arnodo
* @url http://alessandro.arnodo.net
* @version v0.1.2
* @version v0.1.4
* @link https://github.com/vesparny/angular-fancy-modal
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-fancy-modal.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/angular-fancy-modal.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gulp.task('sass', function() {
.pipe($.header(config.banner, {
pkg: pkg
}))
.pipe($.rubySass())
.pipe($.sass())
.on('error', function(err) {
console.log(err.message);
})
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "angular-fancy-modal",
"email": "alessandro@arnodo.net",
"url": "http://alessandro.arnodo.net",
"version": "0.1.3",
"version": "0.1.4",
"homepage": "https://github.com/vesparny/angular-fancy-modal",
"description": "the definitive modal/popup/dialog solution for AngularJS.",
"license": "MIT",
Expand All @@ -16,13 +16,13 @@
"browser-sync": "^1.1.2",
"gulp": "^3.8.9",
"gulp-bump": "^0.1.11",
"gulp-csso": "^0.2.9",
"gulp-csso": "^1.0.0",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.8.5",
"gulp-load-plugins": "^0.7.0",
"gulp-rename": "^1.2.0",
"gulp-ruby-sass": "^0.7.1",
"gulp-uglify": "^1.0.1",
"gulp-sass": "^2.0.1",
"gulp-uglify": "^1.2.0",
"jshint-stylish": "^1.0.0",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
Expand Down

0 comments on commit 86c286c

Please sign in to comment.