This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ====================================================================================================== | |
# SPO-Set-ListCTFieldDisplayOnNewOrEditForm.ps1 | |
# Use this script to update hide or show fields with SharePoint List/Library New and/or Edit forms. | |
# ------------------------------------------------------------------------------------------------------ | |
# Created By: Siôn Lewis | |
# Created Date: 21/05/2021 | |
# Modified By: Siôn Lewis | |
# Modified Date: 21/05/2021 | |
# ------------------------------------------------------------------------------------------------------ | |
# Instructions: 1. Update the variables at the top of the script before running in your environment. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ====================================================================================================== | |
# .\ModernSiteSettings.ps1 | |
# ------------------------------------------------------------------------------------------------------ | |
# Modified by: Siôn Lewis | |
# Modified Date: 10/06/2018 | |
# ------------------------------------------------------------------------------------------------------ | |
# https://docs.microsoft.com/en-us/powershell/module/sharepoint-online/set-sposite?view=sharepoint-ps | |
# https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/set-pnptenant?view=sharepoint-ps | |
# ------------------------------------------------------------------------------------------------------ | |
# Trouble shooting: _ReadMe.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"declaration": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"lib": [ "es2015", "dom" ], | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"noImplicitAny": true, | |
"removeComments": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (global) { | |
System.config({ | |
paths: { | |
// Paths serve as alias (ASP.NET MVC: prefix / to specify the root). | |
'npm:': 'node_modules/' | |
}, | |
// Map tells the System loader where to look for things. | |
map: { | |
// Our app is within the app folder (ASP.NET MVC: prefix / to specify the root). | |
app: 'app', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<title>My iTunes Client App Test</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="Content/site.css" rel="stylesheet" /> | |
<!-- Start Angular Setup --> | |
<!-- 1. Load libraries --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
color: #CCCCCC; | |
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; | |
margin: 10px; | |
} | |
.title { | |
color: #999999; | |
font-size: 16px; | |
font-weight: bold; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>@ViewBag.Title</title> | |
@Styles.Render("~/Content/css") | |
<!-- Start Angular Setup --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { AppComponent } from './app.component'; | |
@NgModule({ | |
imports: [BrowserModule], | |
declarations: [AppComponent], | |
bootstrap: [AppComponent] | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'my-app', | |
template: `<h1>Hello {{name}} World</h1>`, | |
}) | |
export class AppComponent { name = 'Angular'; } |
NewerOlder