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
//sample usage, with qUnit and pinify | |
//<script src="js/jquery-1.6.min.js"></script> | |
//<script src="js/jquery.pinify.js"></script> | |
//<script src="js/qunit.js"></script> | |
module('', { | |
teardown: function() { | |
windowMocks.resetWindow(); | |
} | |
}); |
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> | |
<link rel="shortcut icon" type="image/ico" href="http://localhost/favicon.ico"> | |
<meta name="application-name" content="mySite"> | |
<meta name="msapplication-tooltip" content="mySite"> | |
<meta name="msapplication-starturl" content="http://mysite/Home"> | |
<meta name="msapplication-navbutton-color" content="Green"> | |
<meta name="msapplication-window" content="width=800;height=600"> | |
<meta name="msapplication-task" | |
content="name=Twitter; |
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
$('head').ie9ify({ | |
applicationName: 'User InExperience', | |
tooltip: 'Brandon Satrom on Development, Design and Architecture', | |
tasks: [ { | |
'name': 'Blog', | |
'action': 'http://www.userinexperience.com/blog.aspx', | |
'icon': 'favicon.ico' | |
}, | |
{ | |
'name': 'Twitter', |
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
<script type="text/javascript" src="/scripts/jquery-1.5.min.js"></script> | |
<script type="text/javascript" src="/scripts/jquery.pinify.js"></script> |
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
$.getJSON('Gallery/List', function (data) { | |
var itemList = []; | |
$.each(data, function (key, val) { | |
var item = { | |
'name': data[key].name, | |
'url': 'Gallery/View/' + data[key].id, | |
'icon': '/Content/Images/icon-gallery.ico' | |
}; |
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
setInterval(function () { | |
$.getJSON('Photo/CommentsForUser/' + new Date().getTime() , function (data) { | |
$.pinify.clearOverlay(); | |
var itemList = []; | |
var commentCount = parseInt($('#commentCount').val()); | |
if (data.length > commentCount) { | |
$('#commentCount').val(data.length); | |
$.pinify.flashTaskbar(); |
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
public interface IDependencyResolver | |
{ | |
object GetService(Type serviceType); | |
IEnumerable<object> GetServices(Type serviceType); | |
} |
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
public class StructureMapContainer : IDependencyResolver | |
{ | |
static IContainer _container; | |
public StructureMapContainer(IContainer container) | |
{ | |
_container = container; | |
_container.Configure(x => x.Scan(y => | |
{ | |
y.AssembliesFromApplicationBaseDirectory(); |
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
MvcServiceLocator.SetCurrent(new StructureMapContainer(container)); |