Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
Fixes #585. Added semicolons in JS code lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoreram committed Oct 5, 2015
1 parent c386585 commit be27fd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Resources/views/_base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@
var referrerIsSearchEngine = {{ referrer_is_search_engine() }};
if (referrerIsSearchEngine) {
_etc.push(["{{ store_tracker }}", 'source_se', '', '1']);
_etc.push(["{{ store_tracker }}", 'rf', referrer, '8'])
_etc.push(["{{ store_tracker }}", 'rf', referrer, '8']);
} else if (referrer != false) {
_etc.push(["{{ store_tracker }}", 'source_ref', '', '1']);
_etc.push(["{{ store_tracker }}", 'rf', referrer, '8'])
_etc.push(["{{ store_tracker }}", 'rf', referrer, '8']);
} else {
_etc.push(["{{ store_tracker }}", 'source_dir', '', '1'])
_etc.push(["{{ store_tracker }}", 'source_dir', '', '1']);
}
</script>

Expand Down

1 comment on commit be27fd3

@tonipinel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's ok for me! thanks :)

Please sign in to comment.