Skip to content

Commit a4a9e56

Browse files
author
Cliff Seal
committed
Whitelabel a bit; add instructions on what to ignore LOL
1 parent b0388da commit a4a9e56

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/*

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,21 @@ A simple, flexible, responsive, retina-ready jQuery lightbox plugin. See http://
66
...built for WordPress! Out of the box, this will run on any link (`<a>`) that contains an image (`<img>`). It also groups WordPress galleries by default.
77

88
Want to customize it?
9+
=============
10+
11+
If you have [grunt](http://gruntjs.com/) installed:
912

1013
1. Run `npm install grunt --save-dev` in this directory to initialize grunt stuff.
1114
1. Edit `nivo-lightbox-init.js`.
1215
1. Run `grunt`.
1316

14-
Huzzah! `grunt image` is also available if you edit the images and have [ImageOptim-CLI](http://jamiemason.github.io/ImageOptim-CLI/) installed.
17+
Huzzah! If you don't have grunt installed:
18+
19+
1. Fork this repo.
20+
1. Rework it for your workflow.
21+
22+
If you don't have grunt installed and don't know how to fork a repo:
23+
24+
1. I dunno. Be careful? This plugin isn't supported.
25+
26+
`grunt image` is also available if you edit the images and have [ImageOptim-CLI](http://jamiemason.github.io/ImageOptim-CLI/) installed.

nivo-lightbox.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
/**
33
* Nivo Lightbox for WordPress
44
*
5-
* Customize child theme for Loft at Due South
5+
* Use Nivo Lightbox on all WordPress images
66
*
7-
* @package NL_Vault
7+
* @package NL_WordPress
88
* @author Cliff Seal <cliff@logos-creative.com>
99
* @link http://logoscreative.co
1010
* @copyright 2013 Logos Creative
1111
*
1212
* @wordpress-plugin
1313
* Plugin Name: Nivo Lightbox for WordPress
14-
* Plugin URI: http://dev7studios.com/nivo-lightbox
14+
* Plugin URI: https://github.com/logoscreative/Nivo-Lightbox
1515
* Description: Use Nivo Lightbox on all WordPress images
1616
* Version: 1.0.0
1717
* Author: Cliff Seal <cliff@logos-creative.com>
@@ -26,10 +26,10 @@
2626
/**
2727
* Plugin class.
2828
*
29-
* @package NL_Vault
30-
* @author Your Name <email@example.com>
29+
* @package NL_WordPress
30+
* @author Cliff Seal <cliff@logos-creative.com>
3131
*/
32-
class NL_Vault {
32+
class NL_WordPress {
3333

3434
/**
3535
* Plugin version, used for cache-busting of style and script file references.
@@ -121,4 +121,4 @@ public function nl_enqueue_scripts() {
121121

122122
}
123123

124-
NL_Vault::get_instance();
124+
NL_WordPress::get_instance();

0 commit comments

Comments
 (0)