https://github.com/karolsluszniak/angular-app-loaded
Solves the issue with angular crap ({{}}'s etc) showing up before it loads.
https://github.com/karolsluszniak/angular-app-loaded
Last synced: 3 months ago
JSON representation
Solves the issue with angular crap ({{}}'s etc) showing up before it loads.
- Host: GitHub
- URL: https://github.com/karolsluszniak/angular-app-loaded
- Owner: karolsluszniak
- Created: 2015-07-14T13:54:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-14T14:16:12.000Z (about 10 years ago)
- Last Synced: 2025-07-09T04:24:53.247Z (3 months ago)
- Language: CSS
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular-app-loaded
Solves the issue with angular crap ({{}}'s etc) showing up before it loads.
## Setup
1. Add `angular-app-loaded.js` file to the project and add it as dependency to your app:
```js
angular.module('some-app', ['cloudless.app-loaded']);
```2. Add or paste contents of `angular-app-loaded.css` to the project.
## Usage
Add `.app-show` class to any element that you want to show up only after the angular application loads (angular crap mentioned above).
Aadd `.app-hide` class to any element that you want to hide once the angular application loads (fancy loading spinner/placeholder etc).