Skip to content

Commit

Permalink
Merge pull request HuddleEng#127 from raveclassic/master
Browse files Browse the repository at this point in the history
fixed TypeError when calling phantomcss.compareAll() HuddleEng#68
  • Loading branch information
James Cryer committed Aug 12, 2015
2 parents e44196e + bbbaa22 commit a482cc3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions phantomcss.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ function asyncCompare( one, two, func ) {
initClient();
}

casper.fill( 'form#image-diff-form', {
'one': one,
'two': two
casper.fillSelectors( 'form#image-diff-form', {
'[name=one]': one,
'[name=two]': two
} );

casper.evaluate( function ( filename ) {
Expand Down

0 comments on commit a482cc3

Please sign in to comment.