mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
updating the javascript to include more whitespace as per the wordpress javascript coding standards
This commit is contained in:
parent
02f9c902b6
commit
6215ee636a
2 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,10 @@
|
|||
(function ($) {
|
||||
(function ( $ ) {
|
||||
"use strict";
|
||||
|
||||
$(function () {
|
||||
|
||||
// Place your administration-specific JavaScript here
|
||||
|
||||
});
|
||||
|
||||
}(jQuery));
|
|
@ -1,6 +1,10 @@
|
|||
(function ($) {
|
||||
(function ( $ ) {
|
||||
"use strict";
|
||||
|
||||
$(function () {
|
||||
|
||||
// Place your public-facing JavaScript here
|
||||
|
||||
});
|
||||
|
||||
}(jQuery));
|
Loading…
Reference in a new issue