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 ($, exports) { | |
'use strict'; | |
exports.Site = function (el) { | |
this.el = el; | |
/* Private Methods */ | |
function initSearch() { | |
el.find("#site-search-form").submit(function (e) { | |
var searchInput = $(this).find("input[type='text']"); |
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
using System; | |
using System.Linq; | |
using System.Web; | |
using Kowitz.Core.Module; | |
using Microsoft.Web.Infrastructure.DynamicModuleHelper; | |
using ZeroProximity.DeviceDetection; | |
using umbraco; | |
using umbraco.cms.businesslogic.template; | |
[assembly: PreApplicationStartMethod(typeof(MobileRewriteModule), "Start")] |
NewerOlder