├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── media └── Mesh_icon.png ├── src ├── README.md ├── counter │ ├── README.md │ ├── build.linux.sh │ ├── build.windows.cmd │ └── src │ │ ├── .dockerignore │ │ ├── azurefiles │ │ ├── counter.sln │ │ ├── counter │ │ │ ├── App Resources │ │ │ │ ├── app.yaml │ │ │ │ ├── gateway.yaml │ │ │ │ ├── network.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── secretValue.yaml │ │ │ │ └── volume.yaml │ │ │ ├── Environments │ │ │ │ ├── Cloud │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ └── profile.yaml │ │ │ │ └── Local │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ └── profile.yaml │ │ │ ├── Publish Profiles │ │ │ │ └── cloud.yaml │ │ │ └── counter.sfaproj │ │ └── counterService │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Service Resources │ │ │ └── service.yaml │ │ │ └── counterService.csproj │ │ ├── counterService │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Counter.cs │ │ ├── Dockerfile │ │ ├── FileStore.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── linux.Dockerfile │ │ └── wwwroot │ │ │ ├── default.htm │ │ │ └── scripts │ │ │ └── counter.js │ │ └── sfvolume │ │ ├── counter.sln │ │ ├── counter │ │ ├── linux │ │ │ ├── App Resources │ │ │ │ ├── app.yaml │ │ │ │ ├── gateway.yaml │ │ │ │ └── network.yaml │ │ │ ├── Publish Profiles │ │ │ │ └── cloud.yaml │ │ │ └── readme.md │ │ └── windows │ │ │ ├── App Resources │ │ │ ├── app.yaml │ │ │ ├── gateway.yaml │ │ │ └── network.yaml │ │ │ ├── Publish Profiles │ │ │ └── cloud.yaml │ │ │ └── counter.sfaproj │ │ └── counterService │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Service Resources │ │ └── service.yaml │ │ └── counterService.csproj ├── helloworld │ ├── README.md │ ├── build.linux.sh │ ├── build.windows.cmd │ ├── linux │ │ ├── main │ │ │ ├── Dockerfile │ │ │ ├── content │ │ │ │ ├── ServiceFabricMesh.svg │ │ │ │ └── index.html │ │ │ └── nginx.conf │ │ └── sidecar │ │ │ └── Dockerfile │ └── windows │ │ ├── Dockerfile │ │ ├── ServiceFabricMesh.svg │ │ └── index.html ├── todolistapp │ ├── .dockerignore │ ├── Model │ │ ├── Model.csproj │ │ ├── ToDoItem.cs │ │ └── ToDoList.cs │ ├── ToDoService │ │ ├── Controllers │ │ │ └── ToDoController.cs │ │ ├── DataContext.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Service Resources │ │ │ └── service.yaml │ │ ├── Startup.cs │ │ ├── ToDoService.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── WebFrontEnd │ │ ├── Dockerfile │ │ ├── Pages │ │ │ ├── About.cshtml │ │ │ ├── About.cshtml.cs │ │ │ ├── Contact.cshtml │ │ │ ├── Contact.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Service Resources │ │ │ └── service.yaml │ │ ├── Startup.cs │ │ ├── WebFrontEnd.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ └── banner3.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ ├── todolistapp.sln │ └── todolistapp │ │ ├── App Resources │ │ ├── app.yaml │ │ ├── gateway.yaml │ │ └── network.yaml │ │ ├── Environments │ │ ├── Cloud │ │ │ ├── parameters.yaml │ │ │ └── profile.yaml │ │ └── Local │ │ │ ├── parameters.yaml │ │ │ └── profile.yaml │ │ └── todolistapp.sfaproj ├── visualobjects │ ├── .dockerignore │ ├── README.md │ ├── VisualObjects.Common │ │ ├── Color.cs │ │ ├── Coordinate.cs │ │ ├── IVisualObjectsBox.cs │ │ ├── Speed.cs │ │ ├── VisualObject.cs │ │ ├── VisualObjects.Common.csproj │ │ └── VisualObjectsBox.cs │ ├── VisualObjects.sln │ ├── VisualObjects │ │ ├── App Resources │ │ │ ├── app.yaml │ │ │ └── network.yaml │ │ ├── Publish Profiles │ │ │ └── cloud.yaml │ │ └── VisualObjects.sfaproj │ ├── docker-build.cmd │ ├── docker-build.sh │ ├── docker-linux-build-publish.sh │ ├── docker-windows-build-publish.cmd │ ├── web │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Service Resources │ │ │ └── service.yaml │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── web.csproj │ │ └── wwwroot │ │ │ ├── default.htm │ │ │ └── scripts │ │ │ ├── paper-core.js │ │ │ ├── paper-core.min.js │ │ │ ├── paper-full.js │ │ │ ├── paper-full.min.js │ │ │ └── visualobjects.js │ └── worker │ │ ├── DataSender.cs │ │ ├── Dockerfile │ │ ├── FileStateStore.cs │ │ ├── IStateStore.cs │ │ ├── Mover.cs │ │ ├── Program.cs │ │ ├── Service Resources │ │ └── service.yaml │ │ ├── rotate.Dockerfile │ │ └── worker.csproj └── votingapp │ ├── README.md │ ├── linux │ ├── Deployment │ │ └── quickstart-linux.json │ ├── Dockerfile-data │ ├── Dockerfile-web │ ├── NuGet.Config │ ├── ServiceFabricSBZVoting.sln │ ├── VotingApp │ │ ├── App Resources │ │ │ ├── app.yaml │ │ │ └── network.yaml │ │ ├── Publish Profiles │ │ │ └── cloud.yaml │ │ └── VotingAppResources.sbzproj │ ├── VotingData │ │ ├── Controllers │ │ │ └── VotesDataController.cs │ │ ├── Dockerfile │ │ ├── Nuget.Config │ │ ├── Program.cs │ │ ├── Service Resources │ │ │ └── service.yaml │ │ ├── Startup.cs │ │ ├── VotingData.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── VotingWeb │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── VotesController.cs │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── Nuget.Config │ │ ├── Program.cs │ │ ├── Service Resources │ │ │ └── service.yaml │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── VotingWeb.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── angular-bootstrap │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitignore │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── ui-bootstrap-csp.css │ │ │ │ ├── ui-bootstrap-tpls.js │ │ │ │ ├── ui-bootstrap-tpls.min.js │ │ │ │ ├── ui-bootstrap.js │ │ │ │ └── ui-bootstrap.min.js │ │ │ ├── angular │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── angular-csp.css │ │ │ │ ├── angular.js │ │ │ │ ├── angular.min.js │ │ │ │ ├── angular.min.js.gzip │ │ │ │ ├── angular.min.js.map │ │ │ │ ├── bower.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── bootstrap │ │ │ │ ├── .babelrc.js │ │ │ │ ├── .bower.json │ │ │ │ ├── .browserslistrc │ │ │ │ ├── .editorconfig │ │ │ │ ├── .eslintignore │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ ├── bug.md │ │ │ │ │ │ ├── bug_report.md │ │ │ │ │ │ ├── feature.md │ │ │ │ │ │ └── feature_request.md │ │ │ │ │ └── SUPPORT.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .stylelintignore │ │ │ │ ├── .stylelintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── CNAME │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── _config.yml │ │ │ │ ├── build │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── .htmllintrc │ │ │ │ │ ├── build-plugins.js │ │ │ │ │ ├── change-version.js │ │ │ │ │ ├── gcp-key.json.enc │ │ │ │ │ ├── generate-sri.js │ │ │ │ │ ├── lint-vars.js │ │ │ │ │ ├── postcss.config.js │ │ │ │ │ ├── rollup.config.js │ │ │ │ │ ├── sauce_browsers.json │ │ │ │ │ ├── saucelabs-unit-test.js │ │ │ │ │ ├── ship.sh │ │ │ │ │ ├── vnu-jar.js │ │ │ │ │ ├── workbox.config.json │ │ │ │ │ └── workbox.js │ │ │ │ ├── composer.json │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── js │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ ├── alert.js.map │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── button.js.map │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── modal.js.map │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── popover.js.map │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ ├── tab.js.map │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ └── util.js.map │ │ │ │ │ ├── src │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ └── util.js │ │ │ │ │ └── tests │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── karma-bundle.conf.js │ │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ └── util.js │ │ │ │ │ │ └── visual │ │ │ │ │ │ ├── alert.html │ │ │ │ │ │ ├── button.html │ │ │ │ │ │ ├── carousel.html │ │ │ │ │ │ ├── collapse.html │ │ │ │ │ │ ├── dropdown.html │ │ │ │ │ │ ├── modal.html │ │ │ │ │ │ ├── popover.html │ │ │ │ │ │ ├── scrollspy.html │ │ │ │ │ │ ├── tab.html │ │ │ │ │ │ └── tooltip.html │ │ │ │ ├── nuget │ │ │ │ │ ├── MyGet.ps1 │ │ │ │ │ ├── bootstrap.nuspec │ │ │ │ │ └── bootstrap.sass.nuspec │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.js │ │ │ │ ├── package.json │ │ │ │ ├── sache.json │ │ │ │ ├── scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _button-group.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _card.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _custom-forms.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _images.scss │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _media.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _popover.scss │ │ │ │ │ ├── _print.scss │ │ │ │ │ ├── _progress.scss │ │ │ │ │ ├── _reboot.scss │ │ │ │ │ ├── _root.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ ├── _badge.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _caret.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _hover.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ │ ├── _transition.scss │ │ │ │ │ │ └── _visibility.scss │ │ │ │ │ └── utilities │ │ │ │ │ │ ├── _align.scss │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ ├── _borders.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _display.scss │ │ │ │ │ │ ├── _embed.scss │ │ │ │ │ │ ├── _flex.scss │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ ├── _position.scss │ │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ │ ├── _text.scss │ │ │ │ │ │ └── _visibility.scss │ │ │ │ └── site │ │ │ │ │ ├── _data │ │ │ │ │ ├── breakpoints.yml │ │ │ │ │ ├── browser-bugs.yml │ │ │ │ │ ├── browser-features.yml │ │ │ │ │ ├── colors.yml │ │ │ │ │ ├── examples.yml │ │ │ │ │ ├── grays.yml │ │ │ │ │ ├── nav.yml │ │ │ │ │ ├── theme-colors.yml │ │ │ │ │ └── translations.yml │ │ │ │ │ ├── _includes │ │ │ │ │ ├── ads.html │ │ │ │ │ ├── bugify.html │ │ │ │ │ ├── callout-danger-async-methods.md │ │ │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ │ │ ├── callout.html │ │ │ │ │ ├── docs-navbar.html │ │ │ │ │ ├── docs-sidebar.html │ │ │ │ │ ├── example.html │ │ │ │ │ ├── favicons.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ ├── import.svg │ │ │ │ │ │ ├── lightning.svg │ │ │ │ │ │ ├── menu.svg │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ └── twitter.svg │ │ │ │ │ ├── scripts.html │ │ │ │ │ ├── skippy.html │ │ │ │ │ └── social.html │ │ │ │ │ ├── _layouts │ │ │ │ │ ├── default.html │ │ │ │ │ ├── docs.html │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── home.html │ │ │ │ │ ├── redirect.html │ │ │ │ │ └── simple.html │ │ │ │ │ ├── docs │ │ │ │ │ └── 4.1 │ │ │ │ │ │ ├── about │ │ │ │ │ │ ├── brand.md │ │ │ │ │ │ ├── license.md │ │ │ │ │ │ ├── overview.md │ │ │ │ │ │ └── translations.md │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── brand │ │ │ │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ │ │ │ ├── bootstrap-social.png │ │ │ │ │ │ │ └── bootstrap-solid.svg │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── docs.min.css │ │ │ │ │ │ │ └── docs.min.css.map │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── bootstrap-stack.png │ │ │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ │ │ └── favicons │ │ │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ │ │ ├── docs.min.js │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ │ │ │ ├── pwa.js │ │ │ │ │ │ │ │ └── search.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ │ │ ├── jquery-slim.min.js │ │ │ │ │ │ │ │ └── popper.min.js │ │ │ │ │ │ └── scss │ │ │ │ │ │ │ ├── _ads.scss │ │ │ │ │ │ │ ├── _algolia.scss │ │ │ │ │ │ │ ├── _anchor.scss │ │ │ │ │ │ │ ├── _brand.scss │ │ │ │ │ │ │ ├── _browser-bugs.scss │ │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ │ ├── _callouts.scss │ │ │ │ │ │ │ ├── _clipboard-js.scss │ │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ │ ├── _component-examples.scss │ │ │ │ │ │ │ ├── _content.scss │ │ │ │ │ │ │ ├── _examples.scss │ │ │ │ │ │ │ ├── _footer.scss │ │ │ │ │ │ │ ├── _masthead.scss │ │ │ │ │ │ │ ├── _nav.scss │ │ │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ │ │ ├── _skiplink.scss │ │ │ │ │ │ │ ├── _syntax.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── docs.scss │ │ │ │ │ │ ├── browser-bugs.md │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── alerts.md │ │ │ │ │ │ ├── badge.md │ │ │ │ │ │ ├── breadcrumb.md │ │ │ │ │ │ ├── button-group.md │ │ │ │ │ │ ├── buttons.md │ │ │ │ │ │ ├── card.md │ │ │ │ │ │ ├── carousel.md │ │ │ │ │ │ ├── collapse.md │ │ │ │ │ │ ├── dropdowns.md │ │ │ │ │ │ ├── forms.md │ │ │ │ │ │ ├── input-group.md │ │ │ │ │ │ ├── jumbotron.md │ │ │ │ │ │ ├── list-group.md │ │ │ │ │ │ ├── modal.md │ │ │ │ │ │ ├── navbar.md │ │ │ │ │ │ ├── navs.md │ │ │ │ │ │ ├── pagination.md │ │ │ │ │ │ ├── popovers.md │ │ │ │ │ │ ├── progress.md │ │ │ │ │ │ ├── scrollspy.md │ │ │ │ │ │ └── tooltips.md │ │ │ │ │ │ ├── content │ │ │ │ │ │ ├── code.md │ │ │ │ │ │ ├── figures.md │ │ │ │ │ │ ├── images.md │ │ │ │ │ │ ├── reboot.md │ │ │ │ │ │ ├── tables.md │ │ │ │ │ │ └── typography.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ │ ├── .stylelintrc │ │ │ │ │ │ ├── album │ │ │ │ │ │ │ ├── album.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── blog │ │ │ │ │ │ │ ├── blog.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ │ ├── carousel.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ ├── form-validation.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cover │ │ │ │ │ │ │ ├── cover.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── floating-labels │ │ │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ │ ├── navbar-bottom │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ │ ├── navbars │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── navbar.css │ │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ │ ├── pricing │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pricing.css │ │ │ │ │ │ ├── product │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── product.css │ │ │ │ │ │ ├── screenshots │ │ │ │ │ │ │ ├── album.png │ │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ │ ├── carousel.png │ │ │ │ │ │ │ ├── checkout.png │ │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ │ │ ├── navbars.png │ │ │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ │ │ ├── pricing.png │ │ │ │ │ │ │ ├── product.png │ │ │ │ │ │ │ ├── sign-in.png │ │ │ │ │ │ │ ├── starter-template.png │ │ │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ │ │ └── sticky-footer.png │ │ │ │ │ │ ├── sign-in │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── signin.css │ │ │ │ │ │ ├── starter-template │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ │ │ ├── sticky-footer │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sticky-footer.css │ │ │ │ │ │ └── tooltip-viewport │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── tooltip-viewport.css │ │ │ │ │ │ │ └── tooltip-viewport.js │ │ │ │ │ │ ├── extend │ │ │ │ │ │ ├── approach.md │ │ │ │ │ │ ├── icons.md │ │ │ │ │ │ └── index.md │ │ │ │ │ │ ├── getting-started │ │ │ │ │ │ ├── accessibility.md │ │ │ │ │ │ ├── best-practices.md │ │ │ │ │ │ ├── browsers-devices.md │ │ │ │ │ │ ├── build-tools.md │ │ │ │ │ │ ├── contents.md │ │ │ │ │ │ ├── download.md │ │ │ │ │ │ ├── introduction.md │ │ │ │ │ │ ├── javascript.md │ │ │ │ │ │ ├── theming.md │ │ │ │ │ │ └── webpack.md │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── grid.md │ │ │ │ │ │ ├── media-object.md │ │ │ │ │ │ ├── overview.md │ │ │ │ │ │ └── utilities-for-layout.md │ │ │ │ │ │ ├── migration.md │ │ │ │ │ │ └── utilities │ │ │ │ │ │ ├── borders.md │ │ │ │ │ │ ├── clearfix.md │ │ │ │ │ │ ├── close-icon.md │ │ │ │ │ │ ├── colors.md │ │ │ │ │ │ ├── display.md │ │ │ │ │ │ ├── embed.md │ │ │ │ │ │ ├── flex.md │ │ │ │ │ │ ├── float.md │ │ │ │ │ │ ├── image-replacement.md │ │ │ │ │ │ ├── position.md │ │ │ │ │ │ ├── screenreaders.md │ │ │ │ │ │ ├── shadows.md │ │ │ │ │ │ ├── sizing.md │ │ │ │ │ │ ├── spacing.md │ │ │ │ │ │ ├── text.md │ │ │ │ │ │ ├── vertical-align.md │ │ │ │ │ │ └── visibility.md │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── robots.txt │ │ │ │ │ └── sw.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .appveyor.yml │ │ │ │ ├── .bower.json │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Microsoft.jQuery.Unobtrusive.Validation.nuspec │ │ │ │ ├── README.md │ │ │ │ ├── build.cmd │ │ │ │ ├── build.msbuild │ │ │ │ ├── dist │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── gulpfile.js │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── run.ps1 │ │ │ │ ├── src │ │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── test │ │ │ │ │ └── webpacktest │ │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ └── version.props │ │ │ ├── jquery-validation │ │ │ │ ├── .bower.json │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── build │ │ │ │ │ └── release.js │ │ │ │ ├── changelog.md │ │ │ │ ├── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── additional │ │ │ │ │ │ ├── accept.js │ │ │ │ │ │ ├── additional.js │ │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ │ ├── bic.js │ │ │ │ │ │ ├── cifES.js │ │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ │ ├── creditcard.js │ │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ │ ├── currency.js │ │ │ │ │ │ ├── dateFA.js │ │ │ │ │ │ ├── dateITA.js │ │ │ │ │ │ ├── dateNL.js │ │ │ │ │ │ ├── extension.js │ │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ │ ├── iban.js │ │ │ │ │ │ ├── integer.js │ │ │ │ │ │ ├── ipv4.js │ │ │ │ │ │ ├── ipv6.js │ │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ │ ├── netmask.js │ │ │ │ │ │ ├── nieES.js │ │ │ │ │ │ ├── nifES.js │ │ │ │ │ │ ├── nipPL.js │ │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ │ ├── pattern.js │ │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ │ ├── statesUS.js │ │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ │ ├── time.js │ │ │ │ │ │ ├── time12h.js │ │ │ │ │ │ ├── url2.js │ │ │ │ │ │ ├── vinUS.js │ │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ │ └── ziprange.js │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── core.js │ │ │ │ │ └── localization │ │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ │ ├── messages_az.js │ │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ │ ├── messages_da.js │ │ │ │ │ │ ├── messages_de.js │ │ │ │ │ │ ├── messages_el.js │ │ │ │ │ │ ├── messages_es.js │ │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ │ ├── messages_et.js │ │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ │ ├── messages_he.js │ │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ │ ├── messages_id.js │ │ │ │ │ │ ├── messages_is.js │ │ │ │ │ │ ├── messages_it.js │ │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ │ ├── messages_my.js │ │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ │ ├── messages_no.js │ │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ │ ├── messages_si.js │ │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ │ ├── messages_th.js │ │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ │ ├── methods_de.js │ │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ │ └── methods_pt.js │ │ │ │ └── validation.jquery.json │ │ │ └── jquery │ │ │ │ ├── .bower.json │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ ├── core.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── jquery.slim.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── jquery.slim.min.map │ │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ └── src │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── location.js │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── DOMEval.js │ │ │ │ ├── access.js │ │ │ │ ├── camelCase.js │ │ │ │ ├── init.js │ │ │ │ ├── nodeName.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready-no-deferred.js │ │ │ │ ├── ready.js │ │ │ │ ├── readyException.js │ │ │ │ ├── stripAndCollapse.js │ │ │ │ ├── support.js │ │ │ │ ├── toType.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ │ ├── rboxStyle.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deferred │ │ │ │ └── exceptionHook.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ ├── focusin.js │ │ │ │ ├── support.js │ │ │ │ └── trigger.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── ObjectFunctionString.js │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── fnToString.js │ │ │ │ ├── getProto.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── isFunction.js │ │ │ │ ├── isWindow.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnothtmlwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── bundleconfig.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── Azure_216 blue.svg │ │ │ ├── ServiceFabricMesh.svg │ │ │ └── favicon.png │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── angular-bootstrap │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── ui-bootstrap-csp.css │ │ │ ├── ui-bootstrap-tpls.js │ │ │ ├── ui-bootstrap-tpls.min.js │ │ │ ├── ui-bootstrap.js │ │ │ └── ui-bootstrap.min.js │ │ │ ├── angular │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── bootstrap │ │ │ ├── .babelrc.js │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.json │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── _data │ │ │ │ ├── breakpoints.yml │ │ │ │ ├── browser-bugs.yml │ │ │ │ ├── browser-features.yml │ │ │ │ ├── colors.yml │ │ │ │ ├── examples.yml │ │ │ │ ├── grays.yml │ │ │ │ ├── nav.yml │ │ │ │ ├── theme-colors.yml │ │ │ │ └── translations.yml │ │ │ ├── _includes │ │ │ │ ├── ads.html │ │ │ │ ├── callout-danger-async-methods.md │ │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ │ ├── docs-navbar.html │ │ │ │ ├── docs-sidebar.html │ │ │ │ ├── favicons.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── icons │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── lightning.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ └── twitter.svg │ │ │ │ ├── scripts.html │ │ │ │ └── social.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ ├── docs.html │ │ │ │ ├── examples.html │ │ │ │ ├── home.html │ │ │ │ ├── redirect.html │ │ │ │ └── simple.html │ │ │ ├── _plugins │ │ │ │ ├── bugify.rb │ │ │ │ ├── callout.rb │ │ │ │ ├── example.rb │ │ │ │ └── markdown-block.rb │ │ │ ├── assets │ │ │ │ ├── brand │ │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ │ ├── bootstrap-social.png │ │ │ │ │ └── bootstrap-solid.svg │ │ │ │ ├── css │ │ │ │ │ ├── docs.min.css │ │ │ │ │ └── docs.min.css.map │ │ │ │ ├── img │ │ │ │ │ ├── bootstrap-stack.png │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ └── favicons │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ │ ├── js │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── docs.min.js │ │ │ │ │ ├── src │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ │ └── pwa.js │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── jquery-slim.min.js │ │ │ │ │ │ └── popper.min.js │ │ │ │ └── scss │ │ │ │ │ ├── _ads.scss │ │ │ │ │ ├── _algolia.scss │ │ │ │ │ ├── _anchor.scss │ │ │ │ │ ├── _brand.scss │ │ │ │ │ ├── _browser-bugs.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _callouts.scss │ │ │ │ │ ├── _clipboard-js.scss │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _component-examples.scss │ │ │ │ │ ├── _content.scss │ │ │ │ │ ├── _examples.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _masthead.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ ├── _skiplink.scss │ │ │ │ │ ├── _syntax.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── docs.scss │ │ │ ├── build │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .htmllintrc │ │ │ │ ├── change-version.js │ │ │ │ ├── gcp-key.json.enc │ │ │ │ ├── generate-sri.js │ │ │ │ ├── lint-vars.js │ │ │ │ ├── postcss.config.js │ │ │ │ ├── rollup.config.js │ │ │ │ ├── sauce_browsers.json │ │ │ │ ├── saucelabs-unit-test.js │ │ │ │ ├── ship.sh │ │ │ │ ├── upload-preview.sh │ │ │ │ ├── vnu-jar.js │ │ │ │ ├── workbox.config.json │ │ │ │ └── workbox.js │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── bootstrap.min.js.map │ │ │ │ │ └── npm.js │ │ │ ├── docs │ │ │ │ └── 4.0 │ │ │ │ │ ├── about │ │ │ │ │ ├── brand.md │ │ │ │ │ ├── license.md │ │ │ │ │ ├── overview.md │ │ │ │ │ └── translations.md │ │ │ │ │ ├── browser-bugs.md │ │ │ │ │ ├── components │ │ │ │ │ ├── alerts.md │ │ │ │ │ ├── badge.md │ │ │ │ │ ├── breadcrumb.md │ │ │ │ │ ├── button-group.md │ │ │ │ │ ├── buttons.md │ │ │ │ │ ├── card.md │ │ │ │ │ ├── carousel.md │ │ │ │ │ ├── collapse.md │ │ │ │ │ ├── dropdowns.md │ │ │ │ │ ├── forms.md │ │ │ │ │ ├── input-group.md │ │ │ │ │ ├── jumbotron.md │ │ │ │ │ ├── list-group.md │ │ │ │ │ ├── modal.md │ │ │ │ │ ├── navbar.md │ │ │ │ │ ├── navs.md │ │ │ │ │ ├── pagination.md │ │ │ │ │ ├── popovers.md │ │ │ │ │ ├── progress.md │ │ │ │ │ ├── scrollspy.md │ │ │ │ │ └── tooltips.md │ │ │ │ │ ├── content │ │ │ │ │ ├── code.md │ │ │ │ │ ├── figures.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── reboot.md │ │ │ │ │ ├── tables.md │ │ │ │ │ └── typography.md │ │ │ │ │ ├── examples │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── .stylelintrc │ │ │ │ │ ├── album │ │ │ │ │ │ ├── album.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── blog.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── carousel.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── checkout │ │ │ │ │ │ ├── form-validation.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cover │ │ │ │ │ │ ├── cover.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── floating-labels │ │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ ├── navbar-bottom │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ ├── navbars │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ ├── pricing │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pricing.css │ │ │ │ │ ├── product │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── product.css │ │ │ │ │ ├── screenshots │ │ │ │ │ │ ├── album.png │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ ├── carousel.png │ │ │ │ │ │ ├── checkout.png │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ │ ├── navbars.png │ │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ │ ├── pricing.png │ │ │ │ │ │ ├── product.png │ │ │ │ │ │ ├── sign-in.png │ │ │ │ │ │ ├── starter-template.png │ │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ │ └── sticky-footer.png │ │ │ │ │ ├── sign-in │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── signin.css │ │ │ │ │ ├── starter-template │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ │ ├── sticky-footer │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer.css │ │ │ │ │ └── tooltip-viewport │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tooltip-viewport.css │ │ │ │ │ │ └── tooltip-viewport.js │ │ │ │ │ ├── extend │ │ │ │ │ ├── approach.md │ │ │ │ │ ├── icons.md │ │ │ │ │ └── index.md │ │ │ │ │ ├── getting-started │ │ │ │ │ ├── accessibility.md │ │ │ │ │ ├── best-practices.md │ │ │ │ │ ├── browsers-devices.md │ │ │ │ │ ├── build-tools.md │ │ │ │ │ ├── contents.md │ │ │ │ │ ├── download.md │ │ │ │ │ ├── introduction.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ ├── theming.md │ │ │ │ │ └── webpack.md │ │ │ │ │ ├── layout │ │ │ │ │ ├── grid.md │ │ │ │ │ ├── media-object.md │ │ │ │ │ ├── overview.md │ │ │ │ │ └── utilities-for-layout.md │ │ │ │ │ ├── migration.md │ │ │ │ │ └── utilities │ │ │ │ │ ├── borders.md │ │ │ │ │ ├── clearfix.md │ │ │ │ │ ├── close-icon.md │ │ │ │ │ ├── colors.md │ │ │ │ │ ├── display.md │ │ │ │ │ ├── embed.md │ │ │ │ │ ├── flex.md │ │ │ │ │ ├── float.md │ │ │ │ │ ├── image-replacement.md │ │ │ │ │ ├── position.md │ │ │ │ │ ├── screenreaders.md │ │ │ │ │ ├── sizing.md │ │ │ │ │ ├── spacing.md │ │ │ │ │ ├── text.md │ │ │ │ │ ├── vertical-align.md │ │ │ │ │ └── visibility.md │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── dist │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.js.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.js.map │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.js.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.js.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.js.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ ├── src │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ │ └── tests │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.html │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ ├── unit │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ │ │ ├── vendor │ │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ │ │ └── visual │ │ │ │ │ ├── alert.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── carousel.html │ │ │ │ │ ├── collapse.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── modal.html │ │ │ │ │ ├── popover.html │ │ │ │ │ ├── scrollspy.html │ │ │ │ │ ├── tab.html │ │ │ │ │ └── tooltip.html │ │ │ ├── nuget │ │ │ │ ├── MyGet.ps1 │ │ │ │ ├── bootstrap.nuspec │ │ │ │ └── bootstrap.sass.nuspec │ │ │ ├── package-lock.json │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── robots.txt │ │ │ ├── sache.json │ │ │ ├── scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _hover.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _navbar-align.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ └── _visibility.scss │ │ │ │ └── utilities │ │ │ │ │ ├── _align.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _borders.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _embed.scss │ │ │ │ │ ├── _flex.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ └── _visibility.scss │ │ │ └── sw.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── build │ │ │ │ └── release.js │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcard.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── netmask.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── nipPL.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ ├── statesUS.js │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── time12h.js │ │ │ │ │ ├── url2.js │ │ │ │ │ ├── vinUS.js │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ └── ziprange.js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── validation.jquery.json │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── camelCase.js │ │ │ ├── init.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ ├── toType.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rboxStyle.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── isFunction.js │ │ │ ├── isWindow.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── build.sh │ ├── deploy-azure.sh │ ├── docker-compose.yml │ ├── publish.sh │ ├── run.sh │ └── stop.sh │ └── windows │ └── VotingApp │ ├── .dockerignore │ ├── VotingApp.sln │ ├── VotingApp │ ├── App Resources │ │ ├── app.yaml │ │ └── network.yaml │ ├── Publish Profiles │ │ └── cloud.yaml │ └── VotingApp.sfaproj │ ├── VotingData │ ├── Controllers │ │ └── VotesDataController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Service Resources │ │ └── service.yaml │ ├── Startup.cs │ ├── VotingData.csproj │ ├── appsettings.Development.json │ └── appsettings.json │ └── VotingWeb │ ├── Controllers │ ├── HomeController.cs │ └── VotesController.cs │ ├── Dockerfile │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Service Resources │ └── service.yaml │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── VotingWeb.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bower_components │ ├── angular-bootstrap │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── index.js │ │ ├── package.json │ │ ├── ui-bootstrap-csp.css │ │ ├── ui-bootstrap-tpls.js │ │ ├── ui-bootstrap-tpls.min.js │ │ ├── ui-bootstrap.js │ │ └── ui-bootstrap.min.js │ ├── angular │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── bootstrap │ │ ├── .babelrc.js │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .stylelintignore │ │ ├── .stylelintrc │ │ ├── .travis.yml │ │ ├── CNAME │ │ ├── CODE_OF_CONDUCT.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ ├── _data │ │ │ ├── breakpoints.yml │ │ │ ├── browser-bugs.yml │ │ │ ├── browser-features.yml │ │ │ ├── colors.yml │ │ │ ├── examples.yml │ │ │ ├── grays.yml │ │ │ ├── nav.yml │ │ │ ├── theme-colors.yml │ │ │ └── translations.yml │ │ ├── _includes │ │ │ ├── ads.html │ │ │ ├── callout-danger-async-methods.md │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ ├── docs-navbar.html │ │ │ ├── docs-sidebar.html │ │ │ ├── favicons.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── icons │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── download.svg │ │ │ │ ├── github.svg │ │ │ │ ├── import.svg │ │ │ │ ├── lightning.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── slack.svg │ │ │ │ └── twitter.svg │ │ │ ├── scripts.html │ │ │ └── social.html │ │ ├── _layouts │ │ │ ├── default.html │ │ │ ├── docs.html │ │ │ ├── examples.html │ │ │ ├── home.html │ │ │ ├── redirect.html │ │ │ └── simple.html │ │ ├── _plugins │ │ │ ├── bugify.rb │ │ │ ├── callout.rb │ │ │ ├── example.rb │ │ │ └── markdown-block.rb │ │ ├── assets │ │ │ ├── brand │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ ├── bootstrap-social.png │ │ │ │ └── bootstrap-solid.svg │ │ │ ├── css │ │ │ │ ├── docs.min.css │ │ │ │ └── docs.min.css.map │ │ │ ├── img │ │ │ │ ├── bootstrap-stack.png │ │ │ │ ├── bootstrap-themes.png │ │ │ │ └── favicons │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── js │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── docs.min.js │ │ │ │ ├── src │ │ │ │ │ ├── application.js │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ └── pwa.js │ │ │ │ └── vendor │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── jquery-slim.min.js │ │ │ │ │ └── popper.min.js │ │ │ └── scss │ │ │ │ ├── _ads.scss │ │ │ │ ├── _algolia.scss │ │ │ │ ├── _anchor.scss │ │ │ │ ├── _brand.scss │ │ │ │ ├── _browser-bugs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _callouts.scss │ │ │ │ ├── _clipboard-js.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _component-examples.scss │ │ │ │ ├── _content.scss │ │ │ │ ├── _examples.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _masthead.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _skiplink.scss │ │ │ │ ├── _syntax.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── docs.scss │ │ ├── build │ │ │ ├── .eslintrc.json │ │ │ ├── .htmllintrc │ │ │ ├── change-version.js │ │ │ ├── gcp-key.json.enc │ │ │ ├── generate-sri.js │ │ │ ├── lint-vars.js │ │ │ ├── postcss.config.js │ │ │ ├── rollup.config.js │ │ │ ├── sauce_browsers.json │ │ │ ├── saucelabs-unit-test.js │ │ │ ├── ship.sh │ │ │ ├── upload-preview.sh │ │ │ ├── vnu-jar.js │ │ │ ├── workbox.config.json │ │ │ └── workbox.js │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── docs │ │ │ └── 4.0 │ │ │ │ ├── about │ │ │ │ ├── brand.md │ │ │ │ ├── license.md │ │ │ │ ├── overview.md │ │ │ │ └── translations.md │ │ │ │ ├── browser-bugs.md │ │ │ │ ├── components │ │ │ │ ├── alerts.md │ │ │ │ ├── badge.md │ │ │ │ ├── breadcrumb.md │ │ │ │ ├── button-group.md │ │ │ │ ├── buttons.md │ │ │ │ ├── card.md │ │ │ │ ├── carousel.md │ │ │ │ ├── collapse.md │ │ │ │ ├── dropdowns.md │ │ │ │ ├── forms.md │ │ │ │ ├── input-group.md │ │ │ │ ├── jumbotron.md │ │ │ │ ├── list-group.md │ │ │ │ ├── modal.md │ │ │ │ ├── navbar.md │ │ │ │ ├── navs.md │ │ │ │ ├── pagination.md │ │ │ │ ├── popovers.md │ │ │ │ ├── progress.md │ │ │ │ ├── scrollspy.md │ │ │ │ └── tooltips.md │ │ │ │ ├── content │ │ │ │ ├── code.md │ │ │ │ ├── figures.md │ │ │ │ ├── images.md │ │ │ │ ├── reboot.md │ │ │ │ ├── tables.md │ │ │ │ └── typography.md │ │ │ │ ├── examples │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .stylelintrc │ │ │ │ ├── album │ │ │ │ │ ├── album.css │ │ │ │ │ └── index.html │ │ │ │ ├── blog │ │ │ │ │ ├── blog.css │ │ │ │ │ └── index.html │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.css │ │ │ │ │ └── index.html │ │ │ │ ├── checkout │ │ │ │ │ ├── form-validation.css │ │ │ │ │ └── index.html │ │ │ │ ├── cover │ │ │ │ │ ├── cover.css │ │ │ │ │ └── index.html │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.css │ │ │ │ │ └── index.html │ │ │ │ ├── floating-labels │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ └── index.html │ │ │ │ ├── grid │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── jumbotron │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron.css │ │ │ │ ├── navbar-bottom │ │ │ │ │ └── index.html │ │ │ │ ├── navbar-fixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ ├── navbar-static │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-top.css │ │ │ │ ├── navbars │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar.css │ │ │ │ ├── offcanvas │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── pricing │ │ │ │ │ ├── index.html │ │ │ │ │ └── pricing.css │ │ │ │ ├── product │ │ │ │ │ ├── index.html │ │ │ │ │ └── product.css │ │ │ │ ├── screenshots │ │ │ │ │ ├── album.png │ │ │ │ │ ├── blog.png │ │ │ │ │ ├── carousel.png │ │ │ │ │ ├── checkout.png │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ ├── navbars.png │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ ├── pricing.png │ │ │ │ │ ├── product.png │ │ │ │ │ ├── sign-in.png │ │ │ │ │ ├── starter-template.png │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ └── sticky-footer.png │ │ │ │ ├── sign-in │ │ │ │ │ ├── index.html │ │ │ │ │ └── signin.css │ │ │ │ ├── starter-template │ │ │ │ │ ├── index.html │ │ │ │ │ └── starter-template.css │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ ├── sticky-footer │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ │ └── tooltip-viewport │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tooltip-viewport.css │ │ │ │ │ └── tooltip-viewport.js │ │ │ │ ├── extend │ │ │ │ ├── approach.md │ │ │ │ ├── icons.md │ │ │ │ └── index.md │ │ │ │ ├── getting-started │ │ │ │ ├── accessibility.md │ │ │ │ ├── best-practices.md │ │ │ │ ├── browsers-devices.md │ │ │ │ ├── build-tools.md │ │ │ │ ├── contents.md │ │ │ │ ├── download.md │ │ │ │ ├── introduction.md │ │ │ │ ├── javascript.md │ │ │ │ ├── theming.md │ │ │ │ └── webpack.md │ │ │ │ ├── layout │ │ │ │ ├── grid.md │ │ │ │ ├── media-object.md │ │ │ │ ├── overview.md │ │ │ │ └── utilities-for-layout.md │ │ │ │ ├── migration.md │ │ │ │ └── utilities │ │ │ │ ├── borders.md │ │ │ │ ├── clearfix.md │ │ │ │ ├── close-icon.md │ │ │ │ ├── colors.md │ │ │ │ ├── display.md │ │ │ │ ├── embed.md │ │ │ │ ├── flex.md │ │ │ │ ├── float.md │ │ │ │ ├── image-replacement.md │ │ │ │ ├── position.md │ │ │ │ ├── screenreaders.md │ │ │ │ ├── sizing.md │ │ │ │ ├── spacing.md │ │ │ │ ├── text.md │ │ │ │ ├── vertical-align.md │ │ │ │ └── visibility.md │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.js.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ ├── src │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── index.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── karma.conf.js │ │ │ │ ├── unit │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ │ │ ├── vendor │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ │ └── visual │ │ │ │ ├── alert.html │ │ │ │ ├── button.html │ │ │ │ ├── carousel.html │ │ │ │ ├── collapse.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── modal.html │ │ │ │ ├── popover.html │ │ │ │ ├── scrollspy.html │ │ │ │ ├── tab.html │ │ │ │ └── tooltip.html │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.nuspec │ │ │ └── bootstrap.sass.nuspec │ │ ├── package-lock.json │ │ ├── package.js │ │ ├── package.json │ │ ├── robots.txt │ │ ├── sache.json │ │ ├── scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _navbar-align.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ └── sw.js │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ └── release.js │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── additional │ │ │ │ ├── accept.js │ │ │ │ ├── additional.js │ │ │ │ ├── alphanumeric.js │ │ │ │ ├── bankaccountNL.js │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ ├── bic.js │ │ │ │ ├── cifES.js │ │ │ │ ├── cpfBR.js │ │ │ │ ├── creditcard.js │ │ │ │ ├── creditcardtypes.js │ │ │ │ ├── currency.js │ │ │ │ ├── dateFA.js │ │ │ │ ├── dateITA.js │ │ │ │ ├── dateNL.js │ │ │ │ ├── extension.js │ │ │ │ ├── giroaccountNL.js │ │ │ │ ├── iban.js │ │ │ │ ├── integer.js │ │ │ │ ├── ipv4.js │ │ │ │ ├── ipv6.js │ │ │ │ ├── lettersonly.js │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ ├── mobileNL.js │ │ │ │ ├── mobileUK.js │ │ │ │ ├── netmask.js │ │ │ │ ├── nieES.js │ │ │ │ ├── nifES.js │ │ │ │ ├── nipPL.js │ │ │ │ ├── notEqualTo.js │ │ │ │ ├── nowhitespace.js │ │ │ │ ├── pattern.js │ │ │ │ ├── phoneNL.js │ │ │ │ ├── phoneUK.js │ │ │ │ ├── phoneUS.js │ │ │ │ ├── phonesUK.js │ │ │ │ ├── postalCodeCA.js │ │ │ │ ├── postalcodeBR.js │ │ │ │ ├── postalcodeIT.js │ │ │ │ ├── postalcodeNL.js │ │ │ │ ├── postcodeUK.js │ │ │ │ ├── require_from_group.js │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ ├── statesUS.js │ │ │ │ ├── strippedminlength.js │ │ │ │ ├── time.js │ │ │ │ ├── time12h.js │ │ │ │ ├── url2.js │ │ │ │ ├── vinUS.js │ │ │ │ ├── zipcodeUS.js │ │ │ │ └── ziprange.js │ │ │ ├── ajax.js │ │ │ ├── core.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_nl.js │ │ │ │ └── methods_pt.js │ │ └── validation.jquery.json │ └── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── core.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ ├── external │ │ └── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ └── src │ │ ├── .eslintrc.json │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── camelCase.js │ │ ├── init.js │ │ ├── nodeName.js │ │ ├── parseHTML.js │ │ ├── ready-no-deferred.js │ │ ├── ready.js │ │ ├── readyException.js │ │ ├── stripAndCollapse.js │ │ ├── support.js │ │ ├── toType.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHiddenWithinTree.js │ │ │ ├── rboxStyle.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deferred │ │ └── exceptionHook.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rcheckableType.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── ObjectFunctionString.js │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── fnToString.js │ │ ├── getProto.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── isFunction.js │ │ ├── isWindow.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnothtmlwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js │ ├── bundleconfig.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── Azure_216 blue.svg │ ├── ServiceFabricMesh.svg │ └── favicon.png │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── angular-bootstrap │ ├── .bower.json │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── bower.json │ ├── index.js │ ├── package.json │ ├── ui-bootstrap-csp.css │ ├── ui-bootstrap-tpls.js │ ├── ui-bootstrap-tpls.min.js │ ├── ui-bootstrap.js │ └── ui-bootstrap.min.js │ ├── angular │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── bootstrap │ ├── .babelrc.js │ ├── .bower.json │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .github │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .stylelintignore │ ├── .stylelintrc │ ├── .travis.yml │ ├── CNAME │ ├── CODE_OF_CONDUCT.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── _data │ │ ├── breakpoints.yml │ │ ├── browser-bugs.yml │ │ ├── browser-features.yml │ │ ├── colors.yml │ │ ├── examples.yml │ │ ├── grays.yml │ │ ├── nav.yml │ │ ├── theme-colors.yml │ │ └── translations.yml │ ├── _includes │ │ ├── ads.html │ │ ├── callout-danger-async-methods.md │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ ├── callout-warning-color-assistive-technologies.md │ │ ├── docs-navbar.html │ │ ├── docs-sidebar.html │ │ ├── favicons.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── icons │ │ │ ├── bootstrap.svg │ │ │ ├── download.svg │ │ │ ├── github.svg │ │ │ ├── import.svg │ │ │ ├── lightning.svg │ │ │ ├── menu.svg │ │ │ ├── slack.svg │ │ │ └── twitter.svg │ │ ├── scripts.html │ │ └── social.html │ ├── _layouts │ │ ├── default.html │ │ ├── docs.html │ │ ├── examples.html │ │ ├── home.html │ │ ├── redirect.html │ │ └── simple.html │ ├── _plugins │ │ ├── bugify.rb │ │ ├── callout.rb │ │ ├── example.rb │ │ └── markdown-block.rb │ ├── assets │ │ ├── brand │ │ │ ├── bootstrap-outline.svg │ │ │ ├── bootstrap-punchout.svg │ │ │ ├── bootstrap-social-logo.png │ │ │ ├── bootstrap-social.png │ │ │ └── bootstrap-solid.svg │ │ ├── css │ │ │ ├── docs.min.css │ │ │ └── docs.min.css.map │ │ ├── img │ │ │ ├── bootstrap-stack.png │ │ │ ├── bootstrap-themes.png │ │ │ └── favicons │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── manifest.json │ │ │ │ ├── mstile-144x144.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ └── safari-pinned-tab.svg │ │ ├── js │ │ │ ├── .eslintrc.json │ │ │ ├── docs.min.js │ │ │ ├── src │ │ │ │ ├── application.js │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ └── pwa.js │ │ │ └── vendor │ │ │ │ ├── anchor.min.js │ │ │ │ ├── clipboard.min.js │ │ │ │ ├── holder.min.js │ │ │ │ ├── jquery-slim.min.js │ │ │ │ └── popper.min.js │ │ └── scss │ │ │ ├── _ads.scss │ │ │ ├── _algolia.scss │ │ │ ├── _anchor.scss │ │ │ ├── _brand.scss │ │ │ ├── _browser-bugs.scss │ │ │ ├── _buttons.scss │ │ │ ├── _callouts.scss │ │ │ ├── _clipboard-js.scss │ │ │ ├── _colors.scss │ │ │ ├── _component-examples.scss │ │ │ ├── _content.scss │ │ │ ├── _examples.scss │ │ │ ├── _footer.scss │ │ │ ├── _masthead.scss │ │ │ ├── _nav.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _skiplink.scss │ │ │ ├── _syntax.scss │ │ │ ├── _variables.scss │ │ │ └── docs.scss │ ├── build │ │ ├── .eslintrc.json │ │ ├── .htmllintrc │ │ ├── change-version.js │ │ ├── gcp-key.json.enc │ │ ├── generate-sri.js │ │ ├── lint-vars.js │ │ ├── postcss.config.js │ │ ├── rollup.config.js │ │ ├── sauce_browsers.json │ │ ├── saucelabs-unit-test.js │ │ ├── ship.sh │ │ ├── upload-preview.sh │ │ ├── vnu-jar.js │ │ ├── workbox.config.json │ │ └── workbox.js │ ├── composer.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ └── npm.js │ ├── docs │ │ └── 4.0 │ │ │ ├── about │ │ │ ├── brand.md │ │ │ ├── license.md │ │ │ ├── overview.md │ │ │ └── translations.md │ │ │ ├── browser-bugs.md │ │ │ ├── components │ │ │ ├── alerts.md │ │ │ ├── badge.md │ │ │ ├── breadcrumb.md │ │ │ ├── button-group.md │ │ │ ├── buttons.md │ │ │ ├── card.md │ │ │ ├── carousel.md │ │ │ ├── collapse.md │ │ │ ├── dropdowns.md │ │ │ ├── forms.md │ │ │ ├── input-group.md │ │ │ ├── jumbotron.md │ │ │ ├── list-group.md │ │ │ ├── modal.md │ │ │ ├── navbar.md │ │ │ ├── navs.md │ │ │ ├── pagination.md │ │ │ ├── popovers.md │ │ │ ├── progress.md │ │ │ ├── scrollspy.md │ │ │ └── tooltips.md │ │ │ ├── content │ │ │ ├── code.md │ │ │ ├── figures.md │ │ │ ├── images.md │ │ │ ├── reboot.md │ │ │ ├── tables.md │ │ │ └── typography.md │ │ │ ├── examples │ │ │ ├── .eslintrc.json │ │ │ ├── .stylelintrc │ │ │ ├── album │ │ │ │ ├── album.css │ │ │ │ └── index.html │ │ │ ├── blog │ │ │ │ ├── blog.css │ │ │ │ └── index.html │ │ │ ├── carousel │ │ │ │ ├── carousel.css │ │ │ │ └── index.html │ │ │ ├── checkout │ │ │ │ ├── form-validation.css │ │ │ │ └── index.html │ │ │ ├── cover │ │ │ │ ├── cover.css │ │ │ │ └── index.html │ │ │ ├── dashboard │ │ │ │ ├── dashboard.css │ │ │ │ └── index.html │ │ │ ├── floating-labels │ │ │ │ ├── floating-labels.css │ │ │ │ └── index.html │ │ │ ├── grid │ │ │ │ ├── grid.css │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── jumbotron │ │ │ │ ├── index.html │ │ │ │ └── jumbotron.css │ │ │ ├── navbar-bottom │ │ │ │ └── index.html │ │ │ ├── navbar-fixed │ │ │ │ ├── index.html │ │ │ │ └── navbar-top-fixed.css │ │ │ ├── navbar-static │ │ │ │ ├── index.html │ │ │ │ └── navbar-top.css │ │ │ ├── navbars │ │ │ │ ├── index.html │ │ │ │ └── navbar.css │ │ │ ├── offcanvas │ │ │ │ ├── index.html │ │ │ │ ├── offcanvas.css │ │ │ │ └── offcanvas.js │ │ │ ├── pricing │ │ │ │ ├── index.html │ │ │ │ └── pricing.css │ │ │ ├── product │ │ │ │ ├── index.html │ │ │ │ └── product.css │ │ │ ├── screenshots │ │ │ │ ├── album.png │ │ │ │ ├── blog.png │ │ │ │ ├── carousel.png │ │ │ │ ├── checkout.png │ │ │ │ ├── cover.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── floating-labels.png │ │ │ │ ├── grid.png │ │ │ │ ├── jumbotron.png │ │ │ │ ├── navbar-bottom.png │ │ │ │ ├── navbar-fixed.png │ │ │ │ ├── navbar-static.png │ │ │ │ ├── navbars.png │ │ │ │ ├── offcanvas.png │ │ │ │ ├── pricing.png │ │ │ │ ├── product.png │ │ │ │ ├── sign-in.png │ │ │ │ ├── starter-template.png │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ └── sticky-footer.png │ │ │ ├── sign-in │ │ │ │ ├── index.html │ │ │ │ └── signin.css │ │ │ ├── starter-template │ │ │ │ ├── index.html │ │ │ │ └── starter-template.css │ │ │ ├── sticky-footer-navbar │ │ │ │ ├── index.html │ │ │ │ └── sticky-footer-navbar.css │ │ │ ├── sticky-footer │ │ │ │ ├── index.html │ │ │ │ └── sticky-footer.css │ │ │ └── tooltip-viewport │ │ │ │ ├── index.html │ │ │ │ ├── tooltip-viewport.css │ │ │ │ └── tooltip-viewport.js │ │ │ ├── extend │ │ │ ├── approach.md │ │ │ ├── icons.md │ │ │ └── index.md │ │ │ ├── getting-started │ │ │ ├── accessibility.md │ │ │ ├── best-practices.md │ │ │ ├── browsers-devices.md │ │ │ ├── build-tools.md │ │ │ ├── contents.md │ │ │ ├── download.md │ │ │ ├── introduction.md │ │ │ ├── javascript.md │ │ │ ├── theming.md │ │ │ └── webpack.md │ │ │ ├── layout │ │ │ ├── grid.md │ │ │ ├── media-object.md │ │ │ ├── overview.md │ │ │ └── utilities-for-layout.md │ │ │ ├── migration.md │ │ │ └── utilities │ │ │ ├── borders.md │ │ │ ├── clearfix.md │ │ │ ├── close-icon.md │ │ │ ├── colors.md │ │ │ ├── display.md │ │ │ ├── embed.md │ │ │ ├── flex.md │ │ │ ├── float.md │ │ │ ├── image-replacement.md │ │ │ ├── position.md │ │ │ ├── screenreaders.md │ │ │ ├── sizing.md │ │ │ ├── spacing.md │ │ │ ├── text.md │ │ │ ├── vertical-align.md │ │ │ └── visibility.md │ ├── favicon.ico │ ├── index.html │ ├── js │ │ ├── dist │ │ │ ├── alert.js │ │ │ ├── alert.js.map │ │ │ ├── button.js │ │ │ ├── button.js.map │ │ │ ├── carousel.js │ │ │ ├── carousel.js.map │ │ │ ├── collapse.js │ │ │ ├── collapse.js.map │ │ │ ├── dropdown.js │ │ │ ├── dropdown.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── tooltip.js │ │ │ ├── tooltip.js.map │ │ │ ├── util.js │ │ │ └── util.js.map │ │ ├── src │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── index.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ └── tests │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── karma.conf.js │ │ │ ├── unit │ │ │ ├── .eslintrc.json │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ │ ├── vendor │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ └── visual │ │ │ ├── alert.html │ │ │ ├── button.html │ │ │ ├── carousel.html │ │ │ ├── collapse.html │ │ │ ├── dropdown.html │ │ │ ├── modal.html │ │ │ ├── popover.html │ │ │ ├── scrollspy.html │ │ │ ├── tab.html │ │ │ └── tooltip.html │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.nuspec │ │ └── bootstrap.sass.nuspec │ ├── package-lock.json │ ├── package.js │ ├── package.json │ ├── robots.txt │ ├── sache.json │ ├── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ └── sw.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── build │ │ └── release.js │ ├── changelog.md │ ├── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── package.json │ ├── src │ │ ├── additional │ │ │ ├── accept.js │ │ │ ├── additional.js │ │ │ ├── alphanumeric.js │ │ │ ├── bankaccountNL.js │ │ │ ├── bankorgiroaccountNL.js │ │ │ ├── bic.js │ │ │ ├── cifES.js │ │ │ ├── cpfBR.js │ │ │ ├── creditcard.js │ │ │ ├── creditcardtypes.js │ │ │ ├── currency.js │ │ │ ├── dateFA.js │ │ │ ├── dateITA.js │ │ │ ├── dateNL.js │ │ │ ├── extension.js │ │ │ ├── giroaccountNL.js │ │ │ ├── iban.js │ │ │ ├── integer.js │ │ │ ├── ipv4.js │ │ │ ├── ipv6.js │ │ │ ├── lettersonly.js │ │ │ ├── letterswithbasicpunc.js │ │ │ ├── mobileNL.js │ │ │ ├── mobileUK.js │ │ │ ├── netmask.js │ │ │ ├── nieES.js │ │ │ ├── nifES.js │ │ │ ├── nipPL.js │ │ │ ├── notEqualTo.js │ │ │ ├── nowhitespace.js │ │ │ ├── pattern.js │ │ │ ├── phoneNL.js │ │ │ ├── phoneUK.js │ │ │ ├── phoneUS.js │ │ │ ├── phonesUK.js │ │ │ ├── postalCodeCA.js │ │ │ ├── postalcodeBR.js │ │ │ ├── postalcodeIT.js │ │ │ ├── postalcodeNL.js │ │ │ ├── postcodeUK.js │ │ │ ├── require_from_group.js │ │ │ ├── skip_or_fill_minimum.js │ │ │ ├── statesUS.js │ │ │ ├── strippedminlength.js │ │ │ ├── time.js │ │ │ ├── time12h.js │ │ │ ├── url2.js │ │ │ ├── vinUS.js │ │ │ ├── zipcodeUS.js │ │ │ └── ziprange.js │ │ ├── ajax.js │ │ ├── core.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_az.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ └── validation.jquery.json │ └── jquery │ ├── .bower.json │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ ├── core.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ ├── external │ └── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map │ └── src │ ├── .eslintrc.json │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── DOMEval.js │ ├── access.js │ ├── camelCase.js │ ├── init.js │ ├── nodeName.js │ ├── parseHTML.js │ ├── ready-no-deferred.js │ ├── ready.js │ ├── readyException.js │ ├── stripAndCollapse.js │ ├── support.js │ ├── toType.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHiddenWithinTree.js │ │ ├── rboxStyle.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ └── exceptionHook.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ └── animatedSelector.js │ ├── event.js │ ├── event │ ├── ajax.js │ ├── alias.js │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── rcheckableType.js │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── ObjectFunctionString.js │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── document.js │ ├── documentElement.js │ ├── fnToString.js │ ├── getProto.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── isFunction.js │ ├── isWindow.js │ ├── pnum.js │ ├── push.js │ ├── rcssNum.js │ ├── rnothtmlwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js └── templates ├── README.md ├── counter ├── counter.azurefilesvolume.linux.json ├── counter.azurefilesvolume.windows.json ├── counter.sfreliablevolume.linux.json ├── counter.sfreliablevolume.windows.json ├── readme.md └── readme.sfreliablevolume.md ├── helloworld ├── helloworld.linux.json ├── helloworld.private_registry.linux.json ├── helloworld.private_registry.windows.json ├── helloworld.windows.json ├── readme.md └── readme.private-registry.md ├── ingress ├── meshingress.headers.linux.json ├── meshingress.headers.windows.json ├── meshingress.linux.json ├── meshingress.ports.linux.json ├── meshingress.ports.windows.json ├── meshingress.windows.json └── readme.md ├── todolist ├── mesh_rp.windows.json └── mesh_rp.windows.parameters.json ├── visualobjects ├── README.md ├── visualobjects.base.linux.json ├── visualobjects.base.windows.json ├── visualobjects.scaleout.linux.json ├── visualobjects.scaleout.windows.json ├── visualobjects.upgrade.linux.json └── visualobjects.upgrade.windows.json └── voting ├── mesh_rp.linux.json └── mesh_rp.windows.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/README.md -------------------------------------------------------------------------------- /media/Mesh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/media/Mesh_icon.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/README.md -------------------------------------------------------------------------------- /src/counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/README.md -------------------------------------------------------------------------------- /src/counter/build.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/build.linux.sh -------------------------------------------------------------------------------- /src/counter/build.windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/build.windows.cmd -------------------------------------------------------------------------------- /src/counter/src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/.dockerignore -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter.sln -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/app.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/gateway.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/network.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/secret.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/secretValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/secretValue.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/App Resources/volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/App Resources/volume.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/Environments/Cloud/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/Environments/Cloud/parameters.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/Environments/Cloud/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/Environments/Cloud/profile.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/Environments/Local/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/Environments/Local/parameters.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/Environments/Local/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/Environments/Local/profile.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counter/counter.sfaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counter/counter.sfaproj -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counterService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counterService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counterService/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counterService/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/counter/src/azurefiles/counterService/counterService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/azurefiles/counterService/counterService.csproj -------------------------------------------------------------------------------- /src/counter/src/counterService/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/counter/src/counterService/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Counter.cs -------------------------------------------------------------------------------- /src/counter/src/counterService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Dockerfile -------------------------------------------------------------------------------- /src/counter/src/counterService/FileStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/FileStore.cs -------------------------------------------------------------------------------- /src/counter/src/counterService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Program.cs -------------------------------------------------------------------------------- /src/counter/src/counterService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/counter/src/counterService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/Startup.cs -------------------------------------------------------------------------------- /src/counter/src/counterService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/appsettings.Development.json -------------------------------------------------------------------------------- /src/counter/src/counterService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/appsettings.json -------------------------------------------------------------------------------- /src/counter/src/counterService/linux.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/linux.Dockerfile -------------------------------------------------------------------------------- /src/counter/src/counterService/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/wwwroot/default.htm -------------------------------------------------------------------------------- /src/counter/src/counterService/wwwroot/scripts/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/counterService/wwwroot/scripts/counter.js -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter.sln -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/linux/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/linux/App Resources/app.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/linux/App Resources/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/linux/App Resources/gateway.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/linux/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/linux/App Resources/network.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/linux/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/linux/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/linux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/linux/readme.md -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/windows/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/windows/App Resources/app.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/windows/App Resources/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/windows/App Resources/gateway.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/windows/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/windows/App Resources/network.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/windows/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/windows/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counter/windows/counter.sfaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counter/windows/counter.sfaproj -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counterService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counterService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counterService/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counterService/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/counter/src/sfvolume/counterService/counterService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/counter/src/sfvolume/counterService/counterService.csproj -------------------------------------------------------------------------------- /src/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/README.md -------------------------------------------------------------------------------- /src/helloworld/build.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/build.linux.sh -------------------------------------------------------------------------------- /src/helloworld/build.windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/build.windows.cmd -------------------------------------------------------------------------------- /src/helloworld/linux/main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/linux/main/Dockerfile -------------------------------------------------------------------------------- /src/helloworld/linux/main/content/ServiceFabricMesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/linux/main/content/ServiceFabricMesh.svg -------------------------------------------------------------------------------- /src/helloworld/linux/main/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/linux/main/content/index.html -------------------------------------------------------------------------------- /src/helloworld/linux/main/nginx.conf: -------------------------------------------------------------------------------- 1 | server { listen 80; } 2 | -------------------------------------------------------------------------------- /src/helloworld/linux/sidecar/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox:musl 2 | CMD ping localhost:80 3 | 4 | -------------------------------------------------------------------------------- /src/helloworld/windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/windows/Dockerfile -------------------------------------------------------------------------------- /src/helloworld/windows/ServiceFabricMesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/windows/ServiceFabricMesh.svg -------------------------------------------------------------------------------- /src/helloworld/windows/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/helloworld/windows/index.html -------------------------------------------------------------------------------- /src/todolistapp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/.dockerignore -------------------------------------------------------------------------------- /src/todolistapp/Model/Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/Model/Model.csproj -------------------------------------------------------------------------------- /src/todolistapp/Model/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/Model/ToDoItem.cs -------------------------------------------------------------------------------- /src/todolistapp/Model/ToDoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/Model/ToDoList.cs -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Controllers/ToDoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Controllers/ToDoController.cs -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/DataContext.cs -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Dockerfile -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Program.cs -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/Startup.cs -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/ToDoService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/ToDoService.csproj -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/appsettings.Development.json -------------------------------------------------------------------------------- /src/todolistapp/ToDoService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/ToDoService/appsettings.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Dockerfile -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/About.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Contact.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Program.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/Startup.cs -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/WebFrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/WebFrontEnd.csproj -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/appsettings.Development.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/appsettings.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/WebFrontEnd/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/todolistapp/todolistapp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp.sln -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/App Resources/app.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/App Resources/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/App Resources/gateway.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/App Resources/network.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/Environments/Cloud/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/Environments/Cloud/parameters.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/Environments/Cloud/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/Environments/Cloud/profile.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/Environments/Local/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/Environments/Local/parameters.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/Environments/Local/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/Environments/Local/profile.yaml -------------------------------------------------------------------------------- /src/todolistapp/todolistapp/todolistapp.sfaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/todolistapp/todolistapp/todolistapp.sfaproj -------------------------------------------------------------------------------- /src/visualobjects/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/.dockerignore -------------------------------------------------------------------------------- /src/visualobjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/README.md -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/Color.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/Coordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/Coordinate.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/IVisualObjectsBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/IVisualObjectsBox.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/Speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/Speed.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/VisualObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/VisualObject.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/VisualObjects.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/VisualObjects.Common.csproj -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.Common/VisualObjectsBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.Common/VisualObjectsBox.cs -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects.sln -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects/App Resources/app.yaml -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects/App Resources/network.yaml -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/visualobjects/VisualObjects/VisualObjects.sfaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/VisualObjects/VisualObjects.sfaproj -------------------------------------------------------------------------------- /src/visualobjects/docker-build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/docker-build.cmd -------------------------------------------------------------------------------- /src/visualobjects/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/docker-build.sh -------------------------------------------------------------------------------- /src/visualobjects/docker-linux-build-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/docker-linux-build-publish.sh -------------------------------------------------------------------------------- /src/visualobjects/docker-windows-build-publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/docker-windows-build-publish.cmd -------------------------------------------------------------------------------- /src/visualobjects/web/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/visualobjects/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/Dockerfile -------------------------------------------------------------------------------- /src/visualobjects/web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/Program.cs -------------------------------------------------------------------------------- /src/visualobjects/web/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/visualobjects/web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/Startup.cs -------------------------------------------------------------------------------- /src/visualobjects/web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/appsettings.Development.json -------------------------------------------------------------------------------- /src/visualobjects/web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/appsettings.json -------------------------------------------------------------------------------- /src/visualobjects/web/web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/web.csproj -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/default.htm -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/scripts/paper-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/scripts/paper-core.js -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/scripts/paper-core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/scripts/paper-core.min.js -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/scripts/paper-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/scripts/paper-full.js -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/scripts/paper-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/scripts/paper-full.min.js -------------------------------------------------------------------------------- /src/visualobjects/web/wwwroot/scripts/visualobjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/web/wwwroot/scripts/visualobjects.js -------------------------------------------------------------------------------- /src/visualobjects/worker/DataSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/DataSender.cs -------------------------------------------------------------------------------- /src/visualobjects/worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/Dockerfile -------------------------------------------------------------------------------- /src/visualobjects/worker/FileStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/FileStateStore.cs -------------------------------------------------------------------------------- /src/visualobjects/worker/IStateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/IStateStore.cs -------------------------------------------------------------------------------- /src/visualobjects/worker/Mover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/Mover.cs -------------------------------------------------------------------------------- /src/visualobjects/worker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/Program.cs -------------------------------------------------------------------------------- /src/visualobjects/worker/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/visualobjects/worker/rotate.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/rotate.Dockerfile -------------------------------------------------------------------------------- /src/visualobjects/worker/worker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/visualobjects/worker/worker.csproj -------------------------------------------------------------------------------- /src/votingapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/Deployment/quickstart-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/Deployment/quickstart-linux.json -------------------------------------------------------------------------------- /src/votingapp/linux/Dockerfile-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/Dockerfile-data -------------------------------------------------------------------------------- /src/votingapp/linux/Dockerfile-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/Dockerfile-web -------------------------------------------------------------------------------- /src/votingapp/linux/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/NuGet.Config -------------------------------------------------------------------------------- /src/votingapp/linux/ServiceFabricSBZVoting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/ServiceFabricSBZVoting.sln -------------------------------------------------------------------------------- /src/votingapp/linux/VotingApp/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingApp/App Resources/app.yaml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingApp/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingApp/App Resources/network.yaml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingApp/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingApp/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingApp/VotingAppResources.sbzproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingApp/VotingAppResources.sbzproj -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Controllers/VotesDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Controllers/VotesDataController.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Dockerfile -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Nuget.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Nuget.Config -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Program.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/Startup.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/VotingData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/VotingData.csproj -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/appsettings.Development.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingData/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingData/appsettings.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Controllers/VotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Controllers/VotesController.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Nuget.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Nuget.Config -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Program.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Startup.cs -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/VotingWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/VotingWeb.csproj -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/appsettings.Development.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/appsettings.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular-bootstrap/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/LICENSE.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/angular.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/angular/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.browserslistrc -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.editorconfig -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.eslintignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.gitattributes -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.gitignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.stylelintignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/.travis.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/Gemfile -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/_config.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/.htmllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/.htmllintrc -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/ship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/ship.sh -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/vnu-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/vnu-jar.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/workbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/build/workbox.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/composer.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/package-lock.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/package.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/sache.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/docs/4.1/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | 5 | .lh-condensed { line-height: 1.25; } 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/docs/4.1/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/docs/4.1/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/favicon.ico -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/index.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/robots.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/bootstrap/site/sw.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery-validation-unobtrusive/test/webpacktest/src/index.js: -------------------------------------------------------------------------------- 1 | import _ from "jquery-validation-unobtrusive" -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery-validation-unobtrusive/version.props: -------------------------------------------------------------------------------- 1 | 3.2.10 -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery-validation/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/dist/core.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/toType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/core/toType.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/bundleconfig.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/images/Azure_216 blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/images/Azure_216 blue.svg -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/images/ServiceFabricMesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/images/ServiceFabricMesh.svg -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/images/favicon.png -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular-bootstrap/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/LICENSE.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular-csp.css -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/angular.min.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/angular/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.editorconfig -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.eslintignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.gitattributes -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.gitignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.stylelintignore -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/.travis.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/Gemfile -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_config.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/colors.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/examples.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/grays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/grays.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_data/nav.yml -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_includes/ads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_includes/ads.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/docs.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/home.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_layouts/simple.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/bugify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/bugify.rb -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/callout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/callout.rb -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/_plugins/example.rb -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/assets/js/src/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/assets/js/src/pwa.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/.eslintrc.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/.htmllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/.htmllintrc -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/lint-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/lint-vars.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/ship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/ship.sh -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/vnu-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/vnu-jar.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/workbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/build/workbox.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/composer.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/docs/4.0/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/docs/4.0/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/favicon.ico -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/index.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/index.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/dist/util.js.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/index.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/index.html -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/unit/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/js/tests/unit/tab.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package-lock.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/robots.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/sache.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/bootstrap/sw.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/core.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/camelCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/camelCase.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/nodeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/nodeName.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/toType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/core/toType.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/document.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/isFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/isFunction.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/isWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/isWindow.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/VotingWeb/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/votingapp/linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/build.sh -------------------------------------------------------------------------------- /src/votingapp/linux/deploy-azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/deploy-azure.sh -------------------------------------------------------------------------------- /src/votingapp/linux/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/docker-compose.yml -------------------------------------------------------------------------------- /src/votingapp/linux/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/publish.sh -------------------------------------------------------------------------------- /src/votingapp/linux/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker-compose up -------------------------------------------------------------------------------- /src/votingapp/linux/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/linux/stop.sh -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/.dockerignore -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingApp.sln -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingApp/App Resources/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingApp/App Resources/app.yaml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingApp/App Resources/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingApp/App Resources/network.yaml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingApp/Publish Profiles/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingApp/Publish Profiles/cloud.yaml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingApp/VotingApp.sfaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingApp/VotingApp.sfaproj -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/Dockerfile -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/Program.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/Startup.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/VotingData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/VotingData.csproj -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/appsettings.Development.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingData/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingData/appsettings.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Controllers/VotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Controllers/VotesController.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Dockerfile -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Program.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Service Resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Service Resources/service.yaml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Startup.cs -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/VotingWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/VotingWeb.csproj -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/appsettings.Development.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/appsettings.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/angular-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/angular-bootstrap/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/bootstrap/docs/4.0/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/bootstrap/docs/4.0/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bower_components/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/bundleconfig.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/images/favicon.png -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular-bootstrap/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/LICENSE.md -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/README.md -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/angular.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/angular/index.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/Gemfile -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/docs/4.0/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/docs/4.0/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/bootstrap/sw.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/src/votingapp/windows/VotingApp/VotingWeb/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/counter/counter.azurefilesvolume.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/counter.azurefilesvolume.linux.json -------------------------------------------------------------------------------- /templates/counter/counter.azurefilesvolume.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/counter.azurefilesvolume.windows.json -------------------------------------------------------------------------------- /templates/counter/counter.sfreliablevolume.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/counter.sfreliablevolume.linux.json -------------------------------------------------------------------------------- /templates/counter/counter.sfreliablevolume.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/counter.sfreliablevolume.windows.json -------------------------------------------------------------------------------- /templates/counter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/readme.md -------------------------------------------------------------------------------- /templates/counter/readme.sfreliablevolume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/counter/readme.sfreliablevolume.md -------------------------------------------------------------------------------- /templates/helloworld/helloworld.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/helloworld.linux.json -------------------------------------------------------------------------------- /templates/helloworld/helloworld.private_registry.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/helloworld.private_registry.linux.json -------------------------------------------------------------------------------- /templates/helloworld/helloworld.private_registry.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/helloworld.private_registry.windows.json -------------------------------------------------------------------------------- /templates/helloworld/helloworld.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/helloworld.windows.json -------------------------------------------------------------------------------- /templates/helloworld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/readme.md -------------------------------------------------------------------------------- /templates/helloworld/readme.private-registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/helloworld/readme.private-registry.md -------------------------------------------------------------------------------- /templates/ingress/meshingress.headers.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.headers.linux.json -------------------------------------------------------------------------------- /templates/ingress/meshingress.headers.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.headers.windows.json -------------------------------------------------------------------------------- /templates/ingress/meshingress.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.linux.json -------------------------------------------------------------------------------- /templates/ingress/meshingress.ports.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.ports.linux.json -------------------------------------------------------------------------------- /templates/ingress/meshingress.ports.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.ports.windows.json -------------------------------------------------------------------------------- /templates/ingress/meshingress.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/meshingress.windows.json -------------------------------------------------------------------------------- /templates/ingress/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/ingress/readme.md -------------------------------------------------------------------------------- /templates/todolist/mesh_rp.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/todolist/mesh_rp.windows.json -------------------------------------------------------------------------------- /templates/todolist/mesh_rp.windows.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/todolist/mesh_rp.windows.parameters.json -------------------------------------------------------------------------------- /templates/visualobjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/README.md -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.base.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.base.linux.json -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.base.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.base.windows.json -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.scaleout.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.scaleout.linux.json -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.scaleout.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.scaleout.windows.json -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.upgrade.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.upgrade.linux.json -------------------------------------------------------------------------------- /templates/visualobjects/visualobjects.upgrade.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/visualobjects/visualobjects.upgrade.windows.json -------------------------------------------------------------------------------- /templates/voting/mesh_rp.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/voting/mesh_rp.linux.json -------------------------------------------------------------------------------- /templates/voting/mesh_rp.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-mesh/HEAD/templates/voting/mesh_rp.windows.json --------------------------------------------------------------------------------