Skip to content

Commit 650240f

Browse files
committed
Merge branch 'rework-tests' of github.com:tombatossals/angular-leaflet-directive into rework-tests
2 parents 1c42b1f + dca4e9a commit 650240f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/directives/watchOptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
});
3535
},
3636
};
37-
}, ]);
37+
},]);
3838
});

src/services/leafletData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ angular.module('leaflet-directive').service('leafletData', function($log, $q, le
1919
'geoJSON',
2020
'UTFGrid', //odd ball on naming convention keeping to not break
2121
'decorations',
22-
'directiveControls', ];
22+
'directiveControls',];
2323

2424
//init
2525
_privateItems.forEach(function(itemName) {

test/unit/layersDirective/layersDirective.watchSpec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
/*jshint globalstrict: true*/
55
/* jasmine specs for directives go here */
66
describe('Directive: leaflet: layers.watch', function() {
7-
var $compile, $rootScope, leafletData, scope;
7+
var $compile;
8+
var $rootScope;
9+
var leafletData;
10+
var scope;
811

912
beforeEach(module('leaflet-directive'));
1013
beforeEach(inject(function(_$compile_, _$rootScope_, _leafletData_) {

0 commit comments

Comments
 (0)