Download presentation
Presentation is loading. Please wait.
Published byJosephine Ifill Modified over 10 years ago
3
scot@scothillier.net @ScotHillier
4
Web Parts Workflows Pages Libraries App Parts SharePoint-Hosted Apps Provider-Hosted Apps
7
A new simpler DOCTYPE A new semantic element A new functional element
15
@media (orientation: portrait) {.facet_sidebar { display: none; } //media query with JavaScript var mq = window.matchMedia("(device-width:600px)"); mq.addListener(function () { //do something; });
17
SharePoint 2013 listens for “resize” message
24
public HttpResponseMessage Get(string appId){ HttpResponseMessage response = Request.CreateResponse(); response.Content = new PushStreamContent((stream, httpContent, context) => { StreamWriter writer = new StreamWriter(stream); writer.WriteLine("data:hello"); writer.WriteLine(); }, "text/event-stream"); return response; }
25
if (!!window.EventSource) { var source = new EventSource('http://dev.wingtip.com/api/chat/'); source.addEventListener('message', function (e) { console.log(e.data); }, false); } else { // polyfill }
42
Sponsored by
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.