├── .gitattributes ├── .gitignore ├── LICENSE ├── Office-Add-in-Dialog-API-Simple-Example.yml ├── README.md ├── SimpleDialogSample.sln ├── SimpleDialogSample ├── SimpleDialogSample.csproj └── SimpleDialogSampleManifest │ ├── SharePointProjectItem.spdata │ └── SimpleDialogSample.xml ├── SimpleDialogSampleWeb ├── Dialog.html ├── DialogHelper.js ├── FunctionFile.html ├── Images │ ├── AddinIcon.png │ ├── Button16x16.png │ ├── Button32x32.png │ ├── Button80x80.png │ ├── ButtonPane16x16.png │ ├── ButtonPane32x32.png │ ├── ButtonPane80x80.png │ └── Close.png ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── dialog-test - FTP.pubxml │ │ └── dialog-test - Web Deploy.pubxml ├── Scripts │ ├── FabricUI │ │ └── message.banner.js │ ├── _officeintellisense.js │ ├── _references.js │ ├── jquery-1.9.1.intellisense.js │ ├── jquery-1.9.1.js │ ├── jquery-1.9.1.min.js │ ├── jquery-1.9.1.min.map │ ├── jquery.fabric.js │ └── jquery.fabric.min.js ├── SimpleDialogSampleWeb.csproj ├── Taskpane.css ├── Taskpane.html ├── Taskpane.js ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── message.banner.css └── packages.config └── Zones.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /Office-Add-in-Dialog-API-Simple-Example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/Office-Add-in-Dialog-API-Simple-Example.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/README.md -------------------------------------------------------------------------------- /SimpleDialogSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSample.sln -------------------------------------------------------------------------------- /SimpleDialogSample/SimpleDialogSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSample/SimpleDialogSample.csproj -------------------------------------------------------------------------------- /SimpleDialogSample/SimpleDialogSampleManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSample/SimpleDialogSampleManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /SimpleDialogSample/SimpleDialogSampleManifest/SimpleDialogSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSample/SimpleDialogSampleManifest/SimpleDialogSample.xml -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Dialog.html -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/DialogHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/DialogHelper.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/FunctionFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/FunctionFile.html -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/AddinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/AddinIcon.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/Button16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/Button16x16.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/Button32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/Button32x32.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/Button80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/Button80x80.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/ButtonPane16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/ButtonPane16x16.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/ButtonPane32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/ButtonPane32x32.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/ButtonPane80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/ButtonPane80x80.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Images/Close.png -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Properties/PublishProfiles/dialog-test - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Properties/PublishProfiles/dialog-test - FTP.pubxml -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Properties/PublishProfiles/dialog-test - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Properties/PublishProfiles/dialog-test - Web Deploy.pubxml -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/FabricUI/message.banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/FabricUI/message.banner.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/_officeintellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/_officeintellisense.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/_references.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery.fabric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery.fabric.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Scripts/jquery.fabric.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Scripts/jquery.fabric.min.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/SimpleDialogSampleWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/SimpleDialogSampleWeb.csproj -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Taskpane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Taskpane.css -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Taskpane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Taskpane.html -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Taskpane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Taskpane.js -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Web.Debug.config -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Web.Release.config -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/Web.config -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/message.banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/message.banner.css -------------------------------------------------------------------------------- /SimpleDialogSampleWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/SimpleDialogSampleWeb/packages.config -------------------------------------------------------------------------------- /Zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example/HEAD/Zones.md --------------------------------------------------------------------------------