Skip to content

Commit 5366fb7

Browse files
committed
Updated readme/index
1 parent b969f7f commit 5366fb7

File tree

3 files changed

+118
-2
lines changed

3 files changed

+118
-2
lines changed

README.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,46 @@
11
# jQuery GridManager
22

33
A way of building rows and grids with built in editable regions; requires jQuery, jQueryUI, Bootstrap 3.x, optional TinyMCE/CKeditor
4+
5+
## gridmanager.js
6+
7+
### What is it?
8+
9+
Gridmanager allows you to create, reorder, update & delete rows and columns in grid layouts used by frameworks such as Bootstrap 3.x or Foundation 5.x
10+
11+
#### You can:
12+
13+
- Drag and drop columns & rows
14+
- Resize, delete and add columns on the fly
15+
- Apply custom column and row classes
16+
- Nest rows within columns
17+
- Quickly edit the source code directly
18+
- Add row templates for common column width layouts
19+
- Add/Alter the ID of a column or row directly
20+
- Use the dynamically inserted editable regions to change column/row text
21+
- Tie in Rich Text Editors such as TinyMCE & CKEditor to those editable regions
22+
- Change layout modes for easy editing & previewing of responsive classes
23+
- Use fluid rows if you want
24+
- Create your own custom controls for easily extending functionality
425

5-
## Documentation
6-
See [GitHub Pages][ghp] for all docs + demo
26+
## Installation
27+
See [GitHub Pages][ghp] for all [docs][docs] + [demos][demo]
728

829
[ghp]: http://neokoenig.github.io/jQuery-gridmanager/
30+
[docs]: http://neokoenig.github.io/jQuery-gridmanager/docs
31+
[demo]: http://neokoenig.github.io/jQuery-gridmanager/demo
932

1033
Now available via bower:
1134

1235
```
1336
bower install gridmanager.js
1437
```
38+
39+
#### Licence
40+
41+
Released under the MIT licence. Go wild.
42+
43+
#### Contributors
44+
45+
[Tom King](https://github.com/neokoenig/)
46+
[Percy D Brea](https://github.com/pbreah/)

docs/index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,58 @@ <h4 id="you-can:">You can:</h4>
114114
<li>Create your own custom controls for easily extending functionality</li>
115115
</ul>
116116

117+
<h4 id="changelog">Changelog</h4>
118+
119+
<ul>
120+
<li>0.3.0
121+
122+
<ul>
123+
<li>Nested row &amp; column support &amp; new add nested row button</li>
124+
<li>Added ability to add custom controls on rows &amp; columns (with your own callbacks) </li>
125+
<li>Added Custom column classes in addition to row classes</li>
126+
<li>RTE&#39;s are now attached to their own editable regions within columns</li>
127+
<li>Responsive class support added</li>
128+
<li>Responsive class layout mode added</li>
129+
<li>Font Awesome now the icon default</li>
130+
<li>Documentation now available at <a href="http://neokoenig.github.io/jQuery-gridmanager/docs">http://neokoenig.github.io/jQuery-gridmanager/docs</a></li>
131+
</ul></li>
132+
<li>0.2.2
133+
134+
<ul>
135+
<li>Modal removed; </li>
136+
<li>Source code editing now available directly. </li>
137+
<li>Basic (very basic) foundation support with correct config. </li>
138+
<li>Editable Custom row classes. </li>
139+
<li>Editable Custom Row IDs</li>
140+
</ul></li>
141+
<li>0.2.1
142+
143+
<ul>
144+
<li>Fluid rows now supported. </li>
145+
<li>Columns are now resizable. </li>
146+
<li>Column moving improved. </li>
147+
<li>Source code alert now modal</li>
148+
</ul></li>
149+
<li>0.2.0
150+
151+
<ul>
152+
<li>TinyMCE, CKEditor now supported. </li>
153+
<li>Columns now moveable. </li>
154+
<li>Added reset, alert features, redid CSS and most of the plugin</li>
155+
</ul></li>
156+
<li>0.1.1
157+
158+
<ul>
159+
<li>CSS moved to it&#39;s own file. </li>
160+
<li>Slight visual tweaks.</li>
161+
</ul></li>
162+
<li>0.1.0
163+
164+
<ul>
165+
<li>initial alpha test.</li>
166+
</ul></li>
167+
</ul>
168+
117169
<h4 id="licence">Licence</h4>
118170

119171
<p>Released under the MIT licence. Go wild.</p>

src/docs/index.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,38 @@ Gridmanager allows you to create, reorder, update & delete rows and columns in g
2424
- Use fluid rows if you want
2525
- Create your own custom controls for easily extending functionality
2626

27+
#### Changelog
28+
29+
+ 0.3.0
30+
- Nested row & column support & new add nested row button
31+
- Added ability to add custom controls on rows & columns (with your own callbacks)
32+
- Added Custom column classes in addition to row classes
33+
- RTE's are now attached to their own editable regions within columns
34+
- Responsive class support added
35+
- Responsive class layout mode added
36+
- Font Awesome now the icon default
37+
- Documentation now available at http://neokoenig.github.io/jQuery-gridmanager/docs
38+
+ 0.2.2
39+
- Modal removed;
40+
- Source code editing now available directly.
41+
- Basic (very basic) foundation support with correct config.
42+
- Editable Custom row classes.
43+
- Editable Custom Row IDs
44+
+ 0.2.1
45+
- Fluid rows now supported.
46+
- Columns are now resizable.
47+
- Column moving improved.
48+
- Source code alert now modal
49+
+ 0.2.0
50+
- TinyMCE, CKEditor now supported.
51+
- Columns now moveable.
52+
- Added reset, alert features, redid CSS and most of the plugin
53+
+ 0.1.1
54+
- CSS moved to it's own file.
55+
- Slight visual tweaks.
56+
+ 0.1.0
57+
- initial alpha test.
58+
2759
#### Licence
2860

2961
Released under the MIT licence. Go wild.

0 commit comments

Comments
 (0)