Skip to content

Commit

Permalink
chore: move to github sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 committed Oct 13, 2019
1 parent 453ca62 commit e107b25
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 20 deletions.
7 changes: 7 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# These are supported funding model platforms

github: mattlewis92

patreon: mattlewis92

custom: https://www.paypal.me/mattlewis92
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Bug, feature or support question
about: Become a bronze sponsor on Patreon to file issues
title: Become a bronze sponsor on Patreon to file issues
about: Become a bronze sponsor on Github to file issues
title: Become a bronze sponsor on Github to file issues
labels: ''
assignees: ''
---

Hi there! 👋

While the project is free to use under the MIT licence, if you'd like to file an issue to receive support about a bug you found, a feature you'd like or if you just have a question, you'll need to be a Bronze sponsor or higher on Patreon to do this: https://www.patreon.com/mattlewis92
While the project is free to use under the MIT licence, if you'd like to file an issue to receive support about a bug you found, a feature you'd like or if you just have a question, you'll need to be a Bronze sponsor or higher on GitHub to do this: https://github.com/users/mattlewis92/sponsorship

Any issues opened here will be automatically closed and locked. Thanks for using this project! ✌
32 changes: 15 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# angular resizable element

[![Sponsorship](https://img.shields.io/badge/funding-github-%23EA4AAA)](https://github.com/users/mattlewis92/sponsorship)
[![Build Status](https://travis-ci.org/mattlewis92/angular-resizable-element.svg?branch=master)](https://travis-ci.org/mattlewis92/angular-resizable-element)
[![codecov](https://codecov.io/gh/mattlewis92/angular-resizable-element/branch/master/graph/badge.svg)](https://codecov.io/gh/mattlewis92/angular-resizable-element)
[![npm version](https://badge.fury.io/js/angular-resizable-element.svg)](http://badge.fury.io/js/angular-resizable-element)
[![devDependency Status](https://david-dm.org/mattlewis92/angular-resizable-element/dev-status.svg)](https://david-dm.org/mattlewis92/angular-resizable-element?type=dev)
[![GitHub issues](https://img.shields.io/github/issues/mattlewis92/angular-resizable-element.svg)](https://github.com/mattlewis92/angular-resizable-element/issues)
[![GitHub stars](https://img.shields.io/github/stars/mattlewis92/angular-resizable-element.svg)](https://github.com/mattlewis92/angular-resizable-element/stargazers)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/mattlewis92/angular-resizable-element/master/LICENSE)

## Demo
Expand All @@ -14,11 +12,11 @@ https://mattlewis92.github.io/angular-resizable-element/demo/

## Table of contents

* [About](#about)
* [Installation](#installation)
* [Documentation](#documentation)
* [Development](#development)
* [License](#license)
- [About](#about)
- [Installation](#installation)
- [Documentation](#documentation)
- [Development](#development)
- [License](#license)

## About

Expand All @@ -43,18 +41,18 @@ import { ResizeEvent } from 'angular-resizable-element';
// you should add some more styles to the element. See the demo folder for a more fleshed out example
styles: [
`
mwlResizable {
box-sizing: border-box; // required for the enableGhostResize option to work
}
`
mwlResizable {
box-sizing: border-box; // required for the enableGhostResize option to work
}
`
],
template: `
<div
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)">
</div>
[resizeEdges]="{ bottom: true, right: true, top: true, left: true }"
(resizeEnd)="onResizeEnd($event)"
></div>
`
})
export class MyComponent {
Expand Down Expand Up @@ -86,8 +84,8 @@ https://mattlewis92.github.io/angular-resizable-element/docs/

### Prepare your environment

* Install [Node.js](http://nodejs.org/) and NPM (should come with)
* Install local dev dependencies: `npm install` while current directory is this repo
- Install [Node.js](http://nodejs.org/) and NPM (should come with)
- Install local dev dependencies: `npm install` while current directory is this repo

### Development server

Expand Down

0 comments on commit e107b25

Please sign in to comment.