├── .editorconfig ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── bower.json ├── bower_components ├── angular-mocks │ ├── .bower.json │ ├── README.md │ ├── angular-mocks.js │ ├── bower.json │ └── package.json ├── angular-sanitize │ ├── .bower.json │ ├── README.md │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ └── package.json └── hmps-animate-scss │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── animate.scss │ └── partials │ ├── _bounce.scss │ ├── _bounceIn.scss │ ├── _bounceInDown.scss │ ├── _bounceInLeft.scss │ ├── _bounceInRight.scss │ ├── _bounceInUp.scss │ ├── _bounceOut.scss │ ├── _bounceOutDown.scss │ ├── _bounceOutLeft.scss │ ├── _bounceOutRight.scss │ ├── _bounceOutUp.scss │ ├── _fadeIn.scss │ ├── _fadeInDown.scss │ ├── _fadeInDownBig.scss │ ├── _fadeInLeft.scss │ ├── _fadeInLeftBig.scss │ ├── _fadeInRight.scss │ ├── _fadeInRightBig.scss │ ├── _fadeInUp.scss │ ├── _fadeInUpBig.scss │ ├── _fadeOut.scss │ ├── _fadeOutDown.scss │ ├── _fadeOutDownBig.scss │ ├── _fadeOutLeft.scss │ ├── _fadeOutLeftBig.scss │ ├── _fadeOutRight.scss │ ├── _fadeOutRightBig.scss │ ├── _fadeOutUp.scss │ ├── _fadeOutUpBig.scss │ ├── _flip.scss │ ├── _flipInX.scss │ ├── _flipInY.scss │ ├── _flipOutX.scss │ ├── _flipOutY.scss │ ├── _helpers.scss │ ├── _hingeLeft.scss │ ├── _hingeRight.scss │ ├── _lightSpeedIn.scss │ ├── _lightSpeedOut.scss │ ├── _pulse.scss │ ├── _rollIn.scss │ ├── _rollOut.scss │ ├── _rotateIn.scss │ ├── _rotateInDownLeft.scss │ ├── _rotateInDownRight.scss │ ├── _rotateInUpLeft.scss │ ├── _rotateInUpRight.scss │ ├── _rotateOut.scss │ ├── _rotateOutDownLeft.scss │ ├── _rotateOutDownRight.scss │ ├── _rotateOutUpLeft.scss │ ├── _rotateOutUpRight.scss │ ├── _shake.scss │ ├── _slideInDown.scss │ ├── _slideInLeft.scss │ ├── _slideInRight.scss │ ├── _slideInUp.scss │ ├── _slideOutDown.scss │ ├── _slideOutLeft.scss │ ├── _slideOutRight.scss │ ├── _slideOutUp.scss │ ├── _swing.scss │ ├── _tada.scss │ ├── _wiggle.scss │ └── _wobble.scss ├── css ├── ngNotificationsBar.css └── ngNotificationsBar.min.css ├── dist ├── ngNotificationsBar.min.css └── ngNotificationsBar.min.js ├── example ├── bower_components │ ├── angular-mocks │ │ ├── README.md │ │ ├── angular-mocks.js │ │ ├── bower.json │ │ └── package.json │ ├── angular-sanitize │ │ ├── README.md │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular-sanitize.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ └── package.json │ └── hmps-animate-scss │ │ ├── README.md │ │ ├── animate.scss │ │ └── partials │ │ ├── _bounce.scss │ │ ├── _bounceIn.scss │ │ ├── _bounceInDown.scss │ │ ├── _bounceInLeft.scss │ │ ├── _bounceInRight.scss │ │ ├── _bounceInUp.scss │ │ ├── _bounceOut.scss │ │ ├── _bounceOutDown.scss │ │ ├── _bounceOutLeft.scss │ │ ├── _bounceOutRight.scss │ │ ├── _bounceOutUp.scss │ │ ├── _fadeIn.scss │ │ ├── _fadeInDown.scss │ │ ├── _fadeInDownBig.scss │ │ ├── _fadeInLeft.scss │ │ ├── _fadeInLeftBig.scss │ │ ├── _fadeInRight.scss │ │ ├── _fadeInRightBig.scss │ │ ├── _fadeInUp.scss │ │ ├── _fadeInUpBig.scss │ │ ├── _fadeOut.scss │ │ ├── _fadeOutDown.scss │ │ ├── _fadeOutDownBig.scss │ │ ├── _fadeOutLeft.scss │ │ ├── _fadeOutLeftBig.scss │ │ ├── _fadeOutRight.scss │ │ ├── _fadeOutRightBig.scss │ │ ├── _fadeOutUp.scss │ │ ├── _fadeOutUpBig.scss │ │ ├── _flip.scss │ │ ├── _flipInX.scss │ │ ├── _flipInY.scss │ │ ├── _flipOutX.scss │ │ ├── _flipOutY.scss │ │ ├── _helpers.scss │ │ ├── _hingeLeft.scss │ │ ├── _hingeRight.scss │ │ ├── _lightSpeedIn.scss │ │ ├── _lightSpeedOut.scss │ │ ├── _pulse.scss │ │ ├── _rollIn.scss │ │ ├── _rollOut.scss │ │ ├── _rotateIn.scss │ │ ├── _rotateInDownLeft.scss │ │ ├── _rotateInDownRight.scss │ │ ├── _rotateInUpLeft.scss │ │ ├── _rotateInUpRight.scss │ │ ├── _rotateOut.scss │ │ ├── _rotateOutDownLeft.scss │ │ ├── _rotateOutDownRight.scss │ │ ├── _rotateOutUpLeft.scss │ │ ├── _rotateOutUpRight.scss │ │ ├── _shake.scss │ │ ├── _slideInDown.scss │ │ ├── _slideInLeft.scss │ │ ├── _slideInRight.scss │ │ ├── _slideInUp.scss │ │ ├── _slideOutDown.scss │ │ ├── _slideOutLeft.scss │ │ ├── _slideOutRight.scss │ │ ├── _slideOutUp.scss │ │ ├── _swing.scss │ │ ├── _tada.scss │ │ ├── _wiggle.scss │ │ └── _wobble.scss ├── css │ ├── app.css │ └── normalize.css ├── dist │ ├── ngNotificationsBar.min.css │ └── ngNotificationsBar.min.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html └── js │ └── app.js ├── package.json ├── sass └── ngNotificationsBar.scss └── src └── ngNotificationsBar.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .sass-cache 4 | *.log 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/angular-mocks/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-mocks/.bower.json -------------------------------------------------------------------------------- /bower_components/angular-mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-mocks/README.md -------------------------------------------------------------------------------- /bower_components/angular-mocks/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-mocks/angular-mocks.js -------------------------------------------------------------------------------- /bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-mocks/bower.json -------------------------------------------------------------------------------- /bower_components/angular-mocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-mocks/package.json -------------------------------------------------------------------------------- /bower_components/angular-sanitize/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/.bower.json -------------------------------------------------------------------------------- /bower_components/angular-sanitize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/README.md -------------------------------------------------------------------------------- /bower_components/angular-sanitize/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/angular-sanitize.js -------------------------------------------------------------------------------- /bower_components/angular-sanitize/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/angular-sanitize.min.js -------------------------------------------------------------------------------- /bower_components/angular-sanitize/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /bower_components/angular-sanitize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/bower.json -------------------------------------------------------------------------------- /bower_components/angular-sanitize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/index.js -------------------------------------------------------------------------------- /bower_components/angular-sanitize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular-sanitize/package.json -------------------------------------------------------------------------------- /bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/README.md -------------------------------------------------------------------------------- /bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/angular.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/bower.json -------------------------------------------------------------------------------- /bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/angular/package.json -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/.bower.json -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | test/ -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/README.md -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/animate.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounce.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceIn.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceInDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceInLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceInRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceInUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceOut.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceOutDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceOutLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceOutRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_bounceOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_bounceOutUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeIn.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInDownBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInDownBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInLeftBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInLeftBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInRightBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInRightBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeInUpBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeInUpBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOut.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutDownBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutDownBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutLeftBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutLeftBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutRightBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutRightBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_fadeOutUpBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_fadeOutUpBig.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_flip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_flip.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_flipInX.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_flipInX.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_flipInY.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_flipInY.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_flipOutX.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_flipOutX.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_flipOutY.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_flipOutY.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_helpers.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_hingeLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_hingeLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_hingeRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_hingeRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_lightSpeedIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_lightSpeedIn.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_lightSpeedOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_lightSpeedOut.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_pulse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_pulse.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rollIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rollIn.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rollOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rollOut.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateIn.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateInDownLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateInDownLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateInDownRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateInDownRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateInUpLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateInUpLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateInUpRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateInUpRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateOut.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateOutDownLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateOutDownLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateOutDownRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateOutDownRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateOutUpLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateOutUpLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_rotateOutUpRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_rotateOutUpRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_shake.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_shake.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideInDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideInLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideInRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideInUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideOutDown.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideOutLeft.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideOutRight.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_slideOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_slideOutUp.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_swing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_swing.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_tada.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_tada.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_wiggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_wiggle.scss -------------------------------------------------------------------------------- /bower_components/hmps-animate-scss/partials/_wobble.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/bower_components/hmps-animate-scss/partials/_wobble.scss -------------------------------------------------------------------------------- /css/ngNotificationsBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/css/ngNotificationsBar.css -------------------------------------------------------------------------------- /css/ngNotificationsBar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/css/ngNotificationsBar.min.css -------------------------------------------------------------------------------- /dist/ngNotificationsBar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/dist/ngNotificationsBar.min.css -------------------------------------------------------------------------------- /dist/ngNotificationsBar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/dist/ngNotificationsBar.min.js -------------------------------------------------------------------------------- /example/bower_components/angular-mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-mocks/README.md -------------------------------------------------------------------------------- /example/bower_components/angular-mocks/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-mocks/angular-mocks.js -------------------------------------------------------------------------------- /example/bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-mocks/bower.json -------------------------------------------------------------------------------- /example/bower_components/angular-mocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-mocks/package.json -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/README.md -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/angular-sanitize.js -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/angular-sanitize.min.js -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/bower.json -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/index.js -------------------------------------------------------------------------------- /example/bower_components/angular-sanitize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular-sanitize/package.json -------------------------------------------------------------------------------- /example/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/README.md -------------------------------------------------------------------------------- /example/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /example/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/angular.js -------------------------------------------------------------------------------- /example/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /example/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /example/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /example/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/bower.json -------------------------------------------------------------------------------- /example/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/angular/package.json -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/README.md -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/animate.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounce.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounce.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceIn.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceInDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceInLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceInRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceInUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceOut.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceOutDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceOutLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceOutRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_bounceOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_bounceOutUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeIn.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInDownBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInDownBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInLeftBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInLeftBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInRightBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInRightBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeInUpBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeInUpBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOut.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutDownBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutDownBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutLeftBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutLeftBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutRightBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutRightBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_fadeOutUpBig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_fadeOutUpBig.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_flip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_flip.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_flipInX.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_flipInX.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_flipInY.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_flipInY.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_flipOutX.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_flipOutX.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_flipOutY.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_flipOutY.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_helpers.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_hingeLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_hingeLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_hingeRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_hingeRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_lightSpeedIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_lightSpeedIn.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_lightSpeedOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_lightSpeedOut.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_pulse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_pulse.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rollIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rollIn.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rollOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rollOut.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateIn.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateInDownLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateInDownLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateInDownRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateInDownRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateInUpLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateInUpLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateInUpRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateInUpRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateOut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateOut.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateOutDownLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateOutDownLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateOutDownRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateOutDownRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateOutUpLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateOutUpLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_rotateOutUpRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_rotateOutUpRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_shake.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_shake.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideInDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideInDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideInLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideInLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideInRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideInRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideInUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideInUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideOutDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideOutDown.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideOutLeft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideOutLeft.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideOutRight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideOutRight.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_slideOutUp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_slideOutUp.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_swing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_swing.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_tada.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_tada.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_wiggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_wiggle.scss -------------------------------------------------------------------------------- /example/bower_components/hmps-animate-scss/partials/_wobble.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/bower_components/hmps-animate-scss/partials/_wobble.scss -------------------------------------------------------------------------------- /example/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/css/app.css -------------------------------------------------------------------------------- /example/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/css/normalize.css -------------------------------------------------------------------------------- /example/dist/ngNotificationsBar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/dist/ngNotificationsBar.min.css -------------------------------------------------------------------------------- /example/dist/ngNotificationsBar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/dist/ngNotificationsBar.min.js -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/example/js/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/package.json -------------------------------------------------------------------------------- /sass/ngNotificationsBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/sass/ngNotificationsBar.scss -------------------------------------------------------------------------------- /src/ngNotificationsBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbeletsky/ng-notifications-bar/HEAD/src/ngNotificationsBar.js --------------------------------------------------------------------------------