Skip to content

Commit cf27162

Browse files
committed
Merge pull request #501 from markleusink/patch-2
Fixed deeplinks in the docs that weren't working
2 parents dfa3532 + df4076e commit cf27162

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

.docs/angular-meteor/client/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<meta property="og:title" content="angular-meteor"/>
1010
<meta property="og:description" content="angular-meteor is a realtime full stack that combines the best frameworks. use your existing Angular applications with Meteor - the best backend framework for AngularJS applications."/>
1111
<meta property="og:site_name" content="angular-meteor"/>
12-
<meta property="og:url" content="https://angularjs.meteor.com/"/>
13-
<meta property="og:image" content="https://angularjs.meteor.com/images/logo-large.png"/>
12+
<meta property="og:url" content="https://angular-meteor.com/"/>
13+
<meta property="og:image" content="https://angular-meteor.com/images/logo-large.png"/>
1414

1515
<!-- Twitter Card Meta Tags -->
1616
<meta name="twitter:card" content="summary"/>
1717
<meta name="twitter:title" content="angular-meteor"/>
1818
<meta name="twitter:description" content="angular-meteor is a realtime full stack that combines the best frameworks. use your existing Angular applications with Meteor - the best backend framework for AngularJS applications."/>
19-
<meta name="twitter:image" content="https://angularjs.meteor.com/images/logo-large.png"/>
19+
<meta name="twitter:image" content="https://angular-meteor.com/images/logo-large.png"/>
2020
<meta name="twitter:site" content="@urigoldshtein"/>
2121
<meta name="twitter:creator" content="@urigoldshtein"/>
2222

.docs/angular-meteor/client/views/steps/tutorial.step_04.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ <h1>Step 4 - Adding/removing objects and Angular event handling</h1>
169169

170170
Again, very simple syntax.
171171

172-
You can read more about AngularMeteorCollection and it's helper functions in the [API reference](http://angularjs.meteor.com/api/AngularMeteorCollection).
172+
You can read more about AngularMeteorCollection and it's helper functions in the [API reference](/api/AngularMeteorCollection).
173173

174174

175175
# Summary

.docs/angular-meteor/client/views/steps/tutorial.step_09.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h1>Step 9 - Privacy and publish-subscribe functions</h1>
106106

107107
> Our publish function can also take parameters. In that case, we would also need to pass the parameters from the client.
108108
>
109-
> For more information about the `$meteor.subscribe` service [click here](http://angularjs.meteor.com/api/subscribe)
109+
> For more information about the `$meteor.subscribe` service [click here](/api/subscribe)
110110

111111

112112
In the second parameter, our function uses the Mongo API to return the wanted documents (document are the JSON-style data structure of MongoDB).

.docs/angular-meteor/client/views/steps/tutorial.step_12.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h1>Step 12 - Search, sort, pagination and reactive vars</h1>
8080

8181
$scope.parties = $meteor.collection(Parties).subscribe('parties');
8282

83-
So first we need to add the [$meteor.subscribe](http://angularjs.meteor.com/api/subscribe) service and call it separately:
83+
So first we need to add the [$meteor.subscribe](/api/subscribe) service and call it separately:
8484

8585
$scope.parties = $meteor.collection(Parties);
8686

@@ -237,10 +237,11 @@ <h1>Step 12 - Search, sort, pagination and reactive vars</h1>
237237

238238
But Angular's scope variables are only watched by Angular and are not reactive vars for Meteor...
239239

240-
For that angular-meteor created [getReactively](http://angularjs.meteor.com/api/getReactively) - a way to make an Angular scope variable to a reactive variable.
240+
For that angular-meteor created [getReactively](/api/getReactively) - a way to make an Angular scope variable to a reactive variable.
241241

242242
In order to make the subscription run each time something changes in one of the parameters, we need to place it inside an autorun block.
243-
To do that, we are going to use the [$meteor.autorun](http://angularjs.meteor.com/api/utils) function:
243+
244+
To do that, we are going to use the [$meteor.autorun](/api/utils) function:
244245

245246
$meteor.autorun($scope, function() {
246247

@@ -254,7 +255,7 @@ <h1>Step 12 - Search, sort, pagination and reactive vars</h1>
254255

255256
});
256257

257-
But this still won't help us because there is no reactive variables inside. so let's use [getReactively](http://angularjs.meteor.com/api/getReactively) for that:
258+
But this still won't help us because there is no reactive variables inside, so let's use [getReactively](/api/getReactively) for that:
258259

259260
$meteor.autorun($scope, function() {
260261

.docs/angular-meteor/client/views/steps/tutorial.step_18.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ <h2><a href="/parties/{{dstache}}party._id}}">{{dstache}}party.name}}</a></h2>
404404

405405
We created a `credentials` object containing email and password that will be passed to us from the view. We created a `login` method that will execute the user log in.
406406

407-
You can see a list of API methods for users management provided by `angular-meteor` [here](http://angularjs.meteor.com/api/auth).
407+
You can see a list of API methods for users management provided by `angular-meteor` [here](/api/auth).
408408

409409
Just as we did in the `logout` route, here we utilize an `angular-meteor` method `$meteor.loginWithPassword()` which takes two arguments
410410

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Sitemap: http://angularjs.meteor.com/sitemap.xml
1+
Sitemap: http://angular-meteor.com/sitemap.xml

0 commit comments

Comments
 (0)