Skip to content

Commit

Permalink
Whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelage committed Oct 10, 2014
1 parent 51ccdf4 commit 5096547
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/push.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
TRANSITION(activeDom.cloneNode(true),
transitionFromObj.transition,
function() {
triggerStateChange();
triggerStateChange();
});

PUSH.id = id;
Expand Down
2 changes: 1 addition & 1 deletion js/transitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// * add new bar elements when an existing one isn't present
// * remove any bar elements not found in `newMarkup`
var updateBars = function (newMarkup) {
for (var i=0; i < barSelectors.length; i++ ) {
for (var i = 0; i < barSelectors.length; i++) {
var selector = barSelectors[i];
var newBar = newMarkup.querySelector(selector);
var existingBar = document.querySelector(selector);
Expand Down

0 comments on commit 5096547

Please sign in to comment.