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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="polymer-cool"> | |
<template> | |
<style> | |
</style> | |
<content></content> | |
</template> |
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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="polymer-cool"> | |
<template> | |
<style> | |
</style> | |
<content></content> | |
</template> |
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 context; | |
var web; | |
var user; | |
// This code runs when the DOM is ready and creates a context object which is needed to use the SharePoint object model | |
$(document).ready(function () { | |
context = SP.ClientContext.get_current(); | |
web = context.get_web(); | |
getUserName(); |
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
// saves way to prevent quirks mode and only using one html element | |
look at http://nicolasgallagher.com/better-conditional-classnames-for-hack-free-css/ | |
<!--[if IE]><![endif]--> | |
<!DOCTYPE html> | |
<!--[if lt IE 7]><html class="no-js ie6"><![endif]--> | |
<!--[if IE 7]><html class="no-js ie7"><![endif]--> | |
<!--[if IE 8]><html class="no-js ie8"><![endif]--> | |
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]--> |
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
http://Thorsten%[email protected]:3129 | |
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
http://yoursite/_layouts/closeConnection.aspx?loginasanotheruser=true |
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
'use strict'; | |
// TODO we need a event handler for window.resize to ensure that the | |
// TODO position will be recalclated | |
angular.module('flatdesignAngularApp') | |
.directive('navMenu', ['$compile', function ($compile) { | |
return { | |
link: function (scope, element, attrs) { | |
/* | |
template used for the arrow |
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
{{ games|filter:'street' }} // all games containing "street" in any property | |
{{ games|filter:'!street' }} // all games NOT containing "street" in any property | |
{{ games|filter:{name:'street'} }} // all games containing "street" in their name | |
{{ games|filter:{name:'street'}:true }} // all games named exactly "street" | |
{{ games|filter:{name:'street', device:'PS3'} }} // all games containing "street" in their name and PS3 in their device |
NewerOlder