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

Updating the JavaScript for better practices and refining one of the hooks for the plugin boilerplate

This commit is contained in:
Tom McFarlin 2012-08-17 14:06:06 -04:00
parent 5297deede7
commit 92259517db
3 changed files with 10 additions and 9 deletions

View file

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

View file

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