1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-29 01:43:16 +03:00

updating the javascript to include more whitespace as per the wordpress javascript coding standards

This commit is contained in:
Tom McFarlin 2013-10-16 16:24:16 -04:00
parent 02f9c902b6
commit 6215ee636a
2 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,10 @@
(function ($) {
(function ( $ ) {
"use strict";
$(function () {
// Place your administration-specific JavaScript here
});
}(jQuery));

View file

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