mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Updating javaScript, bringing the plugin's source code up to WordPress' coding conventions, and removing constants.
This commit is contained in:
parent
fb6c7b2c66
commit
a1ec8ed84b
4 changed files with 10 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
||||||
=== Plugin Name ===
|
=== Widget Name ===
|
||||||
Contributors: username1, username2 (this should be a list of wordpress.org userid's)
|
Contributors: username1, username2 (this should be a list of wordpress.org userid's)
|
||||||
Donate link: http://example.com/
|
Donate link: http://example.com/
|
||||||
Tags: comments, spam
|
Tags: comments, spam
|
||||||
Requires at least: 2.0.2
|
Requires at least: 3.3.1
|
||||||
Tested up to: 2.1
|
Tested up to: 3.3.1
|
||||||
Stable tag: 4.3
|
Stable tag: 4.3
|
||||||
|
|
||||||
Here is a short description of the plugin. This should be no more than 150 characters. No markup here.
|
Here is a short description of the plugin. This should be no more than 150 characters. No markup here.
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
(function($) {
|
(function($) {
|
||||||
// Place your administration-specific code here
|
$(function() {
|
||||||
|
// Place your administration-specific JavaScript here
|
||||||
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
|
@ -1,3 +1,5 @@
|
||||||
(function($) {
|
(function($) {
|
||||||
// Place your public facing JavaScript here
|
$(function() {
|
||||||
|
// Place your public-facing JavaScript here
|
||||||
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
|
@ -9,7 +9,7 @@ Author URI: TODO
|
||||||
Author Email: TODO
|
Author Email: TODO
|
||||||
License:
|
License:
|
||||||
|
|
||||||
Copyright 2011 TODO (email@domain.com)
|
Copyright 2012 TODO (email@domain.com)
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License, version 2, as
|
it under the terms of the GNU General Public License, version 2, as
|
||||||
|
|
Loading…
Reference in a new issue