Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaeljymsgutierrez/github-footer-directive
Simple Github Footer Directive link to Developers Github Profile for IONIC APP
https://github.com/michaeljymsgutierrez/github-footer-directive
Last synced: 15 days ago
JSON representation
Simple Github Footer Directive link to Developers Github Profile for IONIC APP
- Host: GitHub
- URL: https://github.com/michaeljymsgutierrez/github-footer-directive
- Owner: michaeljymsgutierrez
- Created: 2016-08-16T06:40:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T01:10:52.000Z (about 7 years ago)
- Last Synced: 2024-11-11T08:50:42.770Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub-Footer-Directive
What is this?
GitHub-Footer-Directive is a simple footer directive for your IONIC Project that can redirect the user to your Github acount when the footer is clicked!
# Usage1 Clone the repo and copy the "gitCreditFooter.js" in you js directory.
2 Include this in your index.html
```html
```3 Inject the module in your app.js 'gitHubCredit.Footer'
```javascript
var app = angular.module('myapp',['gitHubCredit.Footer']);
```
4 Set the Github USERNAME in app.js
```javascript$window.open('https://github.com/< USERNAME>','_self','location=no');
```
5 Finally use this code in your template or wherever you want the footer to appear```html
```