diff --git a/examples/maps/ipv4_map_of_the_internet/js/example.js b/examples/maps/ipv4_map_of_the_internet/js/example.js index bd9890f4..088c9d1a 100644 --- a/examples/maps/ipv4_map_of_the_internet/js/example.js +++ b/examples/maps/ipv4_map_of_the_internet/js/example.js @@ -403,13 +403,17 @@ Ox.load('UI', function() { .attr({id: 'regions'}) .appendTo(self.$world); - ['center', 'left', 'right', 'top', 'bottom'].forEach(function(region) { + [ + 'center', 'left', 'right', 'top', 'bottom' + ].forEach(function(region) { self['$' + region] = Ox.Element() .addClass('region') .attr({id: region}) .appendTo(self.$regions); }); - ['topleft', 'topright', 'bottomleft', 'bottomright', 'square'].forEach(function(region) { + [ + 'topleft', 'topright', 'bottomleft', 'bottomright', 'square' + ].forEach(function(region) { self['$' + region] = Ox.Element() .addClass('region ui') .appendTo(self.$regions);