Skip to content

Commit dfe38a7

Browse files
committed
build fixed as grunt default was not working
1 parent 648ce77 commit dfe38a7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/angular-leaflet-directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1879,7 +1879,7 @@ angular.module("leaflet-directive")
18791879
if (isDefined(markerData.label.options) && markerData.label.options.noHide === true) {
18801880
marker.showLabel();
18811881
}
1882-
if (compileMessage && marker.label != null) {
1882+
if (compileMessage && marker.label !== null) {
18831883
$compile(marker.label._container)(labelScope);
18841884
}
18851885
}

dist/angular-leaflet-directive.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-leaflet-directive_dev_mapped.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-leaflet-directive_dev_mapped.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/services/leafletMarkersHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ angular.module("leaflet-directive")
160160
if (isDefined(markerData.label.options) && markerData.label.options.noHide === true) {
161161
marker.showLabel();
162162
}
163-
if (compileMessage && marker.label != null) {
163+
if (compileMessage && marker.label !== null) {
164164
$compile(marker.label._container)(labelScope);
165165
}
166166
}

0 commit comments

Comments
 (0)