Updated links to dev.office.com/sharepoint locations
This commit is contained in:
parent
41cde5f64e
commit
22570de1f5
|
@ -8,8 +8,8 @@ SharePoint client-side web parts are controls that appear inside a SharePoint pa
|
|||
|
||||
# Additional resources
|
||||
|
||||
* [Overview of the SharePoint Framework](https://github.com/SharePoint/sp-dev-docs/wiki)
|
||||
* [SharePoint Framework development tools and libraries](https://github.com/SharePoint/sp-dev-docs/wiki/Getting-familiar-with-the-tools-and-libraries)
|
||||
* [Overview of the SharePoint Framework](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview)
|
||||
* [SharePoint Framework development tools and libraries](http://dev.office.com/sharepoint/docs/spfx/tools-and-libraries)
|
||||
* [SharePoint Framework Reference](https://sharepoint.github.io/)
|
||||
|
||||
# Using the samples
|
||||
|
|
|
@ -9,8 +9,8 @@ You can find a video recording walk-through this sample from [SharePoint PnP You
|
|||
|
||||
## Applies to
|
||||
|
||||
* [SharePoint Framework Developer Preview](https://github.com/SharePoint/sp-dev-docs/wiki)
|
||||
* [Office 365 developer tenant](https://github.com/SharePoint/sp-dev-docs/wiki/Setup-SharePoint-Tenant)
|
||||
* [SharePoint Framework Developer Preview](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview)
|
||||
* [Office 365 developer tenant](http://dev.office.com/sharepoint/docs/spfx/set-up-your-developer-tenant)
|
||||
|
||||
## Solution
|
||||
|
||||
|
|
|
@ -6,17 +6,17 @@ This *web-part-tutorials* client-side project includes the web parts detailed in
|
|||
|
||||
| Web part | Getting Started Walkthrough | Video
|
||||
| ------------- | ------------- | ------------- |
|
||||
| helloWorld | [Build your first web part](https://github.com/SharePoint/sp-dev-docs/wiki/HelloWorld-WebPart) | [video](https://www.youtube.com/watch?v=ralspfOBgic) |
|
||||
| helloWorldSharePoint | [Connect your client-side web part to SharePoint](https://github.com/SharePoint/sp-dev-docs/wiki/HelloWorld,-Talking-to-SharePoint) | [video](https://www.youtube.com/watch?v=rokWJlXoFWk) |
|
||||
| jQuery | [Add jQueryUI Accordion to your SharePoint client-side web part](https://github.com/SharePoint/sp-dev-docs/wiki/jQueryUI-Accordion-WebPart) | [video](https://www.youtube.com/watch?v=YcECe5JbAnA) |
|
||||
| documentCardExample | [Use Office UI Fabric React components in your SharePoint client-side web part](https://github.com/SharePoint/sp-dev-docs/wiki/Using-Office-UI-Fabric-Components) | [video](https://www.youtube.com/watch?v=P8WmNhcSWHU) |
|
||||
| helloWorld | [Build your first web part](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/build-a-hello-world-web-part) | [video](https://www.youtube.com/watch?v=ralspfOBgic) |
|
||||
| helloWorldSharePoint | [Connect your client-side web part to SharePoint](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/connect-to-sharepoint) | [video](https://www.youtube.com/watch?v=rokWJlXoFWk) |
|
||||
| jQuery | [Add jQueryUI Accordion to your SharePoint client-side web part](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/add-jqueryui-accordion-to-web-part) | [video](https://www.youtube.com/watch?v=YcECe5JbAnA) |
|
||||
| documentCardExample | [Use Office UI Fabric React components in your SharePoint client-side web part](http://dev.office.com/sharepoint/docs/spfx/web-parts/get-started/use-fabric-react-components) | [video](https://www.youtube.com/watch?v=P8WmNhcSWHU) |
|
||||
|
||||
You can also other SharePoint Framework releated videos from [SharePoint PnP YouTube Channel](https://aka.ms/SPPnP-Videos).
|
||||
|
||||
## Applies to
|
||||
|
||||
* [SharePoint Framework Developer Preview](https://github.com/SharePoint/sp-dev-docs/wiki)
|
||||
* [Office 365 developer tenant](https://github.com/SharePoint/sp-dev-docs/wiki/Setup-SharePoint-Tenant)
|
||||
* [SharePoint Framework Developer Preview](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview)
|
||||
* [Office 365 developer tenant](http://dev.office.com/sharepoint/docs/spfx/set-up-your-developer-tenant)
|
||||
|
||||
## Solution
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ export default class HelloWorldWebPart extends BaseClientSideWebPart<IHelloWorld
|
|||
<p class="ms-font-l ms-fontColor-white">Customize SharePoint experiences using Web Parts.</p>
|
||||
<p class="ms-font-l ms-fontColor-white">${this.properties.description}</p>
|
||||
<p class="ms-font-l ms-fontColor-white">${this.properties.test2}</p>
|
||||
<a href="https://github.com/SharePoint/sp-dev-docs/wiki" class="ms-Button ${styles.button}">
|
||||
<a href="http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview" class="ms-Button ${styles.button}">
|
||||
<span class="ms-Button-label">Learn more</span>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -40,7 +40,7 @@ export default class HelloWorldSharePointWebPart extends BaseClientSideWebPart<I
|
|||
<p class="ms-font-l ms-fontColor-white">${this.properties.description}</p>
|
||||
<p class="ms-font-l ms-fontColor-white">${this.properties.test2}</p>
|
||||
<p class='ms-font-l ms-fontColor-white'>Loading from ${this.context.pageContext.web.title}</p>
|
||||
<a href="https://github.com/SharePoint/sp-dev-docs/wiki" class="ms-Button ${styles.button}">
|
||||
<a href="http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview" class="ms-Button ${styles.button}">
|
||||
<span class="ms-Button-label">Learn more</span>
|
||||
</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue