1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-14 09:12:10 +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"; "use strict";
$(function () { $(function () {
// Place your administration-specific JavaScript here // Place your administration-specific JavaScript here
}); });
}(jQuery)); }(jQuery));

View file

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