This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- New API CSS (e.g. ClientResourceManager.RegisterStyleSheet) --> | |
| <asp:PlaceHolder runat="server" ID="ClientDependencyHeadCss"></asp:PlaceHolder> | |
| <!-- New API JS (e.g. ClientResourceManager.RegisterScript)--> | |
| <asp:PlaceHolder runat="server" ID="ClientDependencyHeadJs"></asp:PlaceHolder> | |
| <!-- "Old API" CSS (e.g. styles skin object)--> | |
| <asp:placeholder id="CSS" runat="server" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // UntappdApi.cs | |
| // ************* | |
| using RestSharp; | |
| public class UntappdApi | |
| { | |
| private const string BaseUrl = "http://api.untappd.com/v3/"; | |
| private readonly string apiKey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang=en> | |
| <meta charset=utf-8> | |
| <title>test</title> | |
| <body> | |
| <p>Shit yeah, go on, type some shit!</p> | |
| <textarea></textarea> | |
| <div style="display:none;"></div> | |
| <a href="#" style="display:none;">clear</a> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <component type="Config"> | |
| <config> | |
| <configFile>web.config</configFile> | |
| <install> | |
| <configuration> | |
| <nodes> | |
| <node path="/configuration/system.web/httpModules" action="update" key="name" collision="overwrite"> | |
| <add name="CustomProviderModule" type="DotNetNuke.Providers.CustomProvider.CustomProviderModule, DotNetNuke"/> | |
| </node> | |
| <node path="/configuration/system.webServer/modules" action="update" key="name" collision="overwrite"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($, window) { | |
| $.fn.dnnActionMenu = function (options) { | |
| var opts = $.extend({}, | |
| $.fn.dnnActionMenu.defaultOptions, options), | |
| $moduleWrap = this; | |
| $moduleWrap.each(function () { | |
| var $module = $(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="dnnUserFileManager" class="dnnFileManager dnnClear"> | |
| <div class="fm-explorer-wrap dnnLeft"> | |
| <div class="fm-breadcrumb"> | |
| <p> | |
| <span data-bind="foreach: currentBreadcrumbs"> | |
| <!-- ko if: id === $root.chosenFolderId() --> | |
| <span data-bind="text: name"></span> | |
| <!-- /ko --> | |
| <!-- ko if: id !== $root.chosenFolderId() --> | |
| <a href="#" data-bind="text: name, click: $root.goToFolder"></a> / |
OlderNewer