Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #230

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Browser compatibility: ie8+,Chrome,Safari,Firefox,Opera

jquery1.7+

##Features
## Features
* fast,lightweight
* support more placements
* auto caculate placement
Expand All @@ -23,25 +23,25 @@ jquery1.7+
* support backdrop


##NPM
## NPM
```bash
npm install webui-popover
```

##Bower
## Bower
```bash
bower install webui-popover
```

##CDN
## CDN
WebUI Popover Support CDN from version 1.2.1, avaliable on [JSDELIVR](http://www.jsdelivr.com/?query=webui-popover)

##Demo
## Demo
[WebUI Popover Demo](http://sandywalker.github.io/webui-popover/demo/)

##Getting Started
## Getting Started

####Including it on your page
#### Including it on your page
Localfile
```html
<link rel="stylesheet" href="jquery.webui-popover.css">
Expand All @@ -58,13 +58,13 @@ Or CDN
<script src="https://cdn.jsdelivr.net/jquery.webui-popover/1.2.1/jquery.webui-popover.min.js"></script>
```

####Use the plugin as follows:
#### Use the plugin as follows:

```javascript
$('a').webuiPopover(options);
```

####Some Examples:
#### Some Examples:

Simplest Popover
```javascript
Expand Down Expand Up @@ -241,7 +241,7 @@ $('a').webuiPopover('destroy');
}
```

###Global Methods
### Global Methods


In some situation, you may want to manipulate the plugin like 'show/hide' popovers by global methods. The new object **WebuiPopovers** is introduced and exposed to the global window object, so you can access these methods like 'WebuiPopovers.someMethod()...'.
Expand Down