Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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!
# Usage

1 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

```