Skip to content

Commit 319745c

Browse files
committed
version bump 1.0.15
example - cleaned up bootstrap css for span7 and rows to be like the develop branch
1 parent a23616a commit 319745c

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
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": "angular-google-maps",
3-
"version": "1.0.14",
3+
"version": "1.0.15",
44
"main": "./dist/angular-google-maps.js",
55
"dependencies": {
66
"angular": "1.2.x",

dist/angular-google-maps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-google-maps 1.0.14 2014-03-05
1+
/*! angular-google-maps 1.0.15 2014-03-05
22
* AngularJS directives for Google Maps
33
* git: https://github.com/nlaplante/angular-google-maps.git
44
*/

dist/angular-google-maps.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.

example/example.html

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,18 @@
2828
<body ng-controller="ExampleController">
2929
<!-- You can use either a div having class 'google-map' or the '<google-map>' element; in
3030
the latter case, uncomment the style above to make sure the custom elements gets block display -->
31-
<div class="page-title affix">
32-
<h2>angular-google-maps example <span ng-cloak>{{version}}</span></h2>
33-
</div>
31+
3432
<div class="container-fluid">
3533
<div class="row-fluid">
36-
<div class="span7">
37-
<div class="google-map affix span7"
34+
<div class="page-title">
35+
<h2>angular-google-maps example <span ng-cloak>{{version}}</span></h2>
36+
</div>
37+
<button class="btn btn-danger" ng-click="removeMarkers()">Clear Map</button>
38+
<button class="btn btn-success" ng-click="refreshMap()">Refresh Map</button>
39+
<button class="btn btn-success" ng-click="getMapInstance()">Get Map Instance</button>
40+
</div>
41+
<div class="row-fluid">
42+
<div class="google-map span7"
3843
center="map.center"
3944
zoom="map.zoom"
4045
draggable="true"
@@ -127,10 +132,6 @@ <h2>angular-google-maps example <span ng-cloak>{{version}}</span></h2>
127132
<polyline ng-repeat="p in map.polylines" path="p.path" stroke="p.stroke" visible='p.visible'
128133
geodesic='p.geodesic' fit="false" editable="p.editable" draggable="p.draggable"></polyline>
129134
</div>
130-
<button class="btn btn-danger pull-right" ng-click="removeMarkers()">Clear Map</button>
131-
<button class="btn btn-success pull-right" ng-click="refreshMap()">Refresh Map</button>
132-
<button class="btn btn-success pull-right" ng-click="getMapInstance()">Get Map Instance</button>
133-
</div>
134135
<div class="span5">
135136
<fieldset>
136137
<table class="table">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-google-maps",
3-
"version": "1.0.14",
3+
"version": "1.0.15",
44
"description": "AngularJS directives for Google Maps",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)