Skip to content

Commit fed9f40

Browse files
committed
Version 1.4.1
1 parent b11f535 commit fed9f40

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngmap",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"main": "./build/scripts/ng-map.js",
55
"homepage": "https://github.com/allenhwkim/angularjs-google-maps",
66
"authors": [

build/docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h3> </h3>
4242

4343
<section>
4444
<article><h1>GoogleMap AngularJS Directive</h1><p><a href="https://travis-ci.org/allenhwkim/angularjs-google-maps"><img src="https://travis-ci.org/allenhwkim/angularjs-google-maps.png?branch=master" alt="Build Status"></a></p>
45-
<p><strong>NOTE: 1.3.0 is released.</strong></p>
45+
<p><strong>NOTE: 1.4.0 is released.</strong></p>
4646
<ul>
4747
<li>support lazy loading of maps js, which does not require to <code>http://maps.google.com/maps/api/js</code></li>
4848
</ul>

build/scripts/ng-map.debug.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,12 +430,11 @@ ngMap.provider("mapsJsLoader", function() {
430430
}];
431431
});
432432

433-
ngMap.run(function($rootScope, mapsJsLoader) {
433+
ngMap.run(['$rootScope', 'mapsJsLoader', function($rootScope, mapsJsLoader) {
434434
mapsJsLoader.then(function() {
435435
$rootScope.mapJsLoaded=true;
436436
});
437-
})
438-
437+
}]);
439438

440439
/**
441440
* @ngdoc service

build/scripts/ng-map.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,12 +430,11 @@ ngMap.provider("mapsJsLoader", function() {
430430
}];
431431
});
432432

433-
ngMap.run(function($rootScope, mapsJsLoader) {
433+
ngMap.run(['$rootScope', 'mapsJsLoader', function($rootScope, mapsJsLoader) {
434434
mapsJsLoader.then(function() {
435435
$rootScope.mapJsLoaded=true;
436436
});
437-
})
438-
437+
}]);
439438

440439
/**
441440
* @ngdoc service

0 commit comments

Comments
 (0)