Skip to content

Commit

Permalink
Convert few tabs back to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jul 13, 2016
1 parent 5420985 commit c15aa80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions test/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,14 @@ <h1>Zepto Event unit tests</h1>

testEventsOnPlainObjects: function (t){
var obj = {},
log = [],
fn1 = function(){ log.push('a') },
log = [],
fn1 = function(){ log.push('a') },
fn2 = function(evt, value){ log.push(value) },
fn3 = function(evt, value){ log.push("event2") }
fn3 = function(evt, value){ log.push("event2") }
$(obj)
.on('event', fn1)
.on('event', fn2)
.on('event2', fn3)
.on('event', fn1)
.on('event', fn2)
.on('event2', fn3)

$(obj).trigger('event', 'b')
t.assertEqual('a b', log.join(' '))
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/ajax_load_selector_javascript.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
<script>
window.testValue = 1
window.testValue = 1
</script>
</body>
</html>

0 comments on commit c15aa80

Please sign in to comment.