1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 05:35:36 +03:00

Updating javaScript, bringing the plugin's source code up to WordPress' coding conventions, and removing constants.

This commit is contained in:
Tom McFarlin 2012-03-05 22:33:04 -05:00
parent fb6c7b2c66
commit a1ec8ed84b
4 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,5 @@
(function($) {
// Place your administration-specific code here
$(function() {
// Place your administration-specific JavaScript here
});
})(jQuery);

View file

@ -1,3 +1,5 @@
(function($) {
// Place your public facing JavaScript here
$(function() {
// Place your public-facing JavaScript here
});
})(jQuery);