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
$('head').append($('<link rel="stylesheet">').attr('href', 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css')); | |
$.getScript('http://twitter.github.com/bootstrap/assets/js/bootstrap-transition.js', function() { | |
$.getScript('http://twitter.github.com/bootstrap/assets/js/bootstrap-collapse.js', function() { | |
var $collapse = $('<div class="accordion">'); | |
var $tplHead = $('<div class="accordion-heading"><a class="accordion-toggle" data-toggle="collapse">'); | |
var $tplBody = $('<div class="accordion-body collapse"><div class="accordion-inner">'); | |
$('.s4-ba .s4-wpTopTable:has([webpartid])').each(function(i) { | |
var $wp = $(this); | |
var $content = $wp.find('[webpartid]'); | |
var $head = $tplHead.clone(); |
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() { | |
$('.ms-socialCommentEdit').each(function() { | |
var $wp = $(this).closest('[webpartid]'); | |
var $search = $('<input>').keyup(function() { | |
$wp.find('.ms-socialCommentItem').hide(); | |
$wp.find('.ms-socialCommentItem').filter(function() { | |
return $(this).find('.socialcomment-contents').text().toLowerCase().indexOf($search.val().toLowerCase()) >= 0; | |
}).show(); | |
}); | |
$wp.prepend($search); |
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
var SPGetSPcurrentUser = function(callback) { | |
var spuserid = "Error"; | |
var context = new SP.ClientContext.get_current(); | |
// Using this here would make it global, as the function is not called with 'new' | |
// and this would then point to the global object, window | |
//this.website = context.get_web(); | |
var website = context.get_web(); | |
var currentUser = website.get_currentUser(); | |
context.load(currentUser); | |
context.executeQueryAsync( |
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
protected void Application_PreRequestHandlerExecute() | |
{ | |
if (!(Context.Handler is IRequiresSessionState)) return; | |
var authenticationCookie = Request.Cookies[FormsAuthentication.FormsCookieName]; | |
if (authenticationCookie == null) return; | |
var authenticationTicket = FormsAuthentication.Decrypt(authenticationCookie.Value); | |
if (authenticationTicket == null || authenticationTicket.Expired) return; |
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
using System; | |
using System.Linq; | |
public static class IsNumericExtension | |
{ | |
public static bool IsNumeric(this string orig) | |
{ | |
return orig.Length > 0 && orig.ToCharArray().All(Char.IsNumber); | |
} | |
} |
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
<p>Lagre som bookmarks/favoritter:</p> | |
<p> | |
<a href="javascript:$('div[class*=prod]').sort(function(a,b){function d(x){var d=$(x).find('.value').text().match(/\d+/);if(!d)return 0;return parseInt(d[0],10)};return d(b)-d(a)}).each(function(i){$('div[class*=prod]').eq(i).replaceWith(this)});">Komplettsalg - prosent</a> | |
</p> | |
<p> | |
<a href="javascript:$('div[class*=prod]').sort(function(a,b){function d(x,y){var d=$(x).find(y).text().replace(/\./g,'').match(/\d+/);return d?parseInt(d[0]):0}function dd(x){return d(x,'.priceBefore')-d(x,'.price')}return dd(b)-dd(a)}).each(function(i){$('div[class*=prod]').eq(i).replaceWith(this)});">Komplettsalg - prisforskjell</a> | |
</p> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>imgur oauth</title> | |
<script src="http://code.jquery.com/jquery.min.js"></script> | |
<script> | |
$(function () { | |
var extractToken = function(hash) { |
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
public static FileInformation GetFile(ClientContext clientContext, string fileRef) | |
{ | |
using (var clientContextHack = new ClientContext(clientContext.Url)) | |
{ | |
return File.OpenBinaryDirect(clientContextHack, fileRef); | |
} | |
} |
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
var d={a:1,b:2},f=function(a,b){return a+b};f.apply(null,(''+f).match(/function[^(]*\(([^)]*)\)/)[1].split(/,\s*/).map(function(x){return d[x]})) |