Skip to content

Commit 465a1cb

Browse files
authored
Update get-started-creating-sharepoint-hosted-sharepoint-add-ins.md
1 parent cdc80b7 commit 465a1cb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/sp-add-ins/get-started-creating-sharepoint-hosted-sharepoint-add-ins.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ After you finish the signup process, your browser opens the Office 365 installat
161161

162162
```
163163
<script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script>
164-
<script type="text/javascript" src="/_layouts/15/sp.js"></script>
164+
<script type="text/javascript" src="/_layouts/15/sp.js"></script>
165165
166166
```
167167

168168

169-
Then search the file for any other markup that also loads one or the other of these files and remove the redundant markup. Save and close the file.
169+
Then search the file for any other markup that also loads one or the other of these files and remove the redundant markup. Save and close the file.
170170

171171

172172

@@ -262,15 +262,15 @@ For your first SharePoint-hosted SharePoint Add-in, we'll include the classic Sh
262262
```
263263
<ViewFields>
264264
<FieldRef Name="Title" ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" DisplayName="Employee" />
265-
</ViewFields>
265+
</ViewFields>
266266
```
267267

268268
20. Still in the schema.xml file, in the **View** element whose **BaseViewID** value is "1", replace the existing **ViewFields** element with the following markup. (Use exactly this GUID for the **FieldRef** named `LinkTitle`.)
269269

270270
```
271271
<ViewFields>
272272
<FieldRef Name="LinkTitle" ID="{82642ec8-ef9b-478f-acf9-31f7d45fbc31}" DisplayName="Employee" />
273-
</ViewFields>
273+
</ViewFields>
274274
```
275275

276276
21. Save and close the schema.xml file.
@@ -321,7 +321,6 @@ For your first SharePoint-hosted SharePoint Add-in, we'll include the classic Sh
321321
<p><asp:HyperLink runat="server"
322322
NavigateUrl="JavaScript:window.___location = _spPageContextInfo.webAbsoluteUrl + '/Lists/NewEmployeesInSeattle/AllItems.aspx';"
323323
Text="New Employees in Seattle" /></p>
324-
325324
```
326325

327326

0 commit comments

Comments
 (0)