This file contains 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
$('dl.faq > dt') | |
.on( | |
'click', | |
function() { | |
$(this) | |
.toggleClass('closed opened') | |
.next() | |
.toggle(); | |
} | |
) |
This file contains 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.s4-ql ul.root > li > a') | |
.on( | |
'click', | |
function(e) { | |
e.preventDefault(); | |
$(this).next().toggle(); | |
} | |
) | |
; |
This file contains 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 spe_emf_FixWorkspace() { | |
var elWorkspace = document.getElementById('s4-workspace'); | |
elWorkspace.style.height = (GetViewportHeight() - (AbsTop(elWorkspace))) + "px"; | |
} | |
ExecuteOrDelayUntilScriptLoaded(function () { SP.UI.Workspace.add_resized(spe_emf_FixWorkspace); }, "init.js"); |
This file contains 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
$(".ms-WPHeaderTd").each( | |
function() { | |
var webPartClass = "wptitle-" + $(this).attr("title").replace(/[^a-z]/ig,'').toLowerCase(); | |
console.log(webPartClass); | |
$(this).closest(".s4-wpcell").addClass(webPartClass); | |
} | |
); |
This file contains 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
<cars> | |
<car make="Ford" model="Pinto"> | |
<passenger name="Dustin" /> | |
<passenger name="Graham" /> | |
</car> | |
<car make="Toyota" model="Prius" /> | |
<car make="Nissan" model="Sentra" /> | |
</cars> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes" /> | |
<xsl:template match="/"> | |
<table> | |
<thead> | |
<tr> | |
<th>Make</th> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes" /> | |
<xsl:template match="/"> | |
<table> | |
<thead> | |
<tr> | |
<th>Make</th> | |
<th>Model</th> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes" /> | |
<xsl:template match="/"> | |
<table> | |
<thead> | |
<tr> | |
<th>Make</th> | |
<th>Model</th> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes" /> | |
<xsl:strip-space elements="*" /> | |
<xsl:template match="/"> | |
<table> | |
<thead> | |
<tr> | |
<th>Make</th> | |
<th>Model</th> |
This file contains 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
<dsQueryResponse BaseViewID="1" RowLimit="30" TemplateType="107" ViewStyleID=""> | |
<Rows> | |
<Row AssignedTo="<table cellpadding="0" cellspacing="0" > | |
<tr> | |
<td style="padding-right: 3px;"> | |
</td> | |
</tr> | |
</table>" AssignedTo.id="" AssignedTo.span="<table cellpadding="0" cellspacing="0" > | |
<tr> | |
<td style="padding-right: 3px;"> |
OlderNewer