Replace tabs with 4 white-spaces.

This commit is contained in:
Jürg Lehni 2014-08-16 19:24:54 +02:00
parent 687199e95d
commit 48cb05a181
230 changed files with 35818 additions and 35816 deletions

View file

@ -13,16 +13,16 @@
module('Project');
test('activate()', function() {
var project = new Project();
var secondDoc = new Project();
project.activate();
var path = new Path();
equals(function() {
return project.activeLayer.children[0] == path;
}, true);
equals(function() {
return secondDoc.activeLayer.children.length == 0;
}, true);
var project = new Project();
var secondDoc = new Project();
project.activate();
var path = new Path();
equals(function() {
return project.activeLayer.children[0] == path;
}, true);
equals(function() {
return secondDoc.activeLayer.children.length == 0;
}, true);
});
test('clear()', function() {