Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add semicolons to the start of each js file #339

Merged
merged 1 commit into from
Oct 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/analytics.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var GOVUK = global.GOVUK || {}
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/download-link-tracker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/error-tracking.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Extension to track errors using google analytics as a data store.
(function (global) {
;(function (global) {
'use strict'

var GOVUK = global.GOVUK || {}
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/external-link-tracker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var GOVUK = global.GOVUK || {}
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/mailto-link-tracker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/analytics/print-intent.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Extension to monitor attempts to print pages.
(function (global) {
;(function (global) {
'use strict'

var GOVUK = global.GOVUK || {}
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/modules.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/modules/auto-track-event.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var GOVUK = global.GOVUK || {}
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/multivariate-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/primary-links.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/selection-buttons.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/shim-links-with-button-role.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// object with your own selector for the target elements and addional keyup
// codes if there becomes a need to do so. For example:
// GOVUK.shimLinksWithButtonRole.init({ selector: '[role="button"]' });
(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/govuk/stop-scrolling-at-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Height is passed in separatly incase the scrolling element has no height
// itself.

(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down
2 changes: 1 addition & 1 deletion javascripts/stageprompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//
// <a class="help-button" href="#" data-journey-click="stage:help:info">See more info...</a>

(function (global) {
;(function (global) {
'use strict'

var $ = global.jQuery
Expand Down