Skip to content

Commit

Permalink
ngdoc first steps
Browse files Browse the repository at this point in the history
  • Loading branch information
iamisti committed Jan 1, 2016
1 parent 7f0ebf9 commit f412352
Show file tree
Hide file tree
Showing 27 changed files with 13,116 additions and 17 deletions.
6 changes: 6 additions & 0 deletions app/modules/main/directives/mdtTableDirective.js
@@ -1,6 +1,12 @@
(function(){
'use strict';

/**
* @ngdoc directive
* @module mdDataTable
* @name mdDataTable
* @restrict E
*/
function mdtTableDirective(TableDataStorageFactory, mdtPaginationHelperFactory, mdtAjaxPaginationHelperFactory){
return {
restrict: 'E',
Expand Down
45 changes: 45 additions & 0 deletions docs/css/animations.css
@@ -0,0 +1,45 @@
.slide-reveal.ng-enter {
-webkit-transition:0.5s linear all;
-moz-transition:0.5s linear all;
-o-transition:0.5s linear all;
transition:0.5s linear all;

opacity:0.5;
position:relative;
opacity:0;
top:10px;
}
.slide-reveal.ng-enter-active {
top:0;
opacity:1;
}

.expand.ng-enter {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:0;
max-height:0;
overflow:hidden;
}
.expand.ng-enter-active {
opacity:1;
max-height:40px;
}

.expand.ng-leave {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:1;
max-height:40px;
overflow:hidden;
}
.expand.ng-leave-active {
opacity:0;
max-height:0;
}

0 comments on commit f412352

Please sign in to comment.