From 432cbbf10ddfdd7e30cb576a03989df223e68a3f Mon Sep 17 00:00:00 2001 From: dmiedema Date: Wed, 25 Mar 2015 10:54:40 -0700 Subject: [PATCH] Remove coveralls branch Accidentally committed this to the wrong branch via github UI --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b13b6d21..93278720 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ [![Build Status](https://travis-ci.org/cruffenach/CRToast.svg?branch=master)](https://travis-ci.org/cruffenach/CRToast) [![Pod Version](http://img.shields.io/cocoapods/v/CRToast.svg?style=flat)](http://cocoadocs.org/docsets/CRToast) -[![Coverage Status](https://coveralls.io/repos/dmiedema/CRToast/badge.svg?branch=slather)](https://coveralls.io/r/dmiedema/CRToast?branch=slather) `CRToast` is a library that allows you to easily create notifications that appear on top of or by pushing out the status bar or navigation bar. `CRToast` was originally based on [CWStatusBarNotification](https://github.com/cezarywojcik/CWStatusBarNotification). @@ -82,18 +81,18 @@ Title and Subtitle text with: ### Touch Interactions -`CRToast` allows for any notification to respond to different types of touch interactions (tap, swipe). Interaction responders can be set as defaults or on a per notification basis. +`CRToast` allows for any notification to respond to different types of touch interactions (tap, swipe). Interaction responders can be set as defaults or on a per notification basis. The types of interactions you can set up to respond to are: ```Obj-C -CRToastInteractionTypeSwipeUp -CRToastInteractionTypeSwipeLeft -CRToastInteractionTypeSwipeDown -CRToastInteractionTypeSwipeRight -CRToastInteractionTypeTapOnce -CRToastInteractionTypeTapTwice -CRToastInteractionTypeTwoFingerTapOnce -CRToastInteractionTypeTwoFingerTapTwice +CRToastInteractionTypeSwipeUp +CRToastInteractionTypeSwipeLeft +CRToastInteractionTypeSwipeDown +CRToastInteractionTypeSwipeRight +CRToastInteractionTypeTapOnce +CRToastInteractionTypeTapTwice +CRToastInteractionTypeTwoFingerTapOnce +CRToastInteractionTypeTwoFingerTapTwice ``` There are also wild card interaction types which cover a range of interactions