Download presentation
Presentation is loading. Please wait.
Published byAlanis Yarnall Modified over 9 years ago
1
Windows 8 App Dev With HTML and JavaScript DEV322
4
Approaching development
16
//tasks.data.js define([‘jquery’], function ($) { return {... }; }); //tasks.app.js require([‘tasks.data’], function (data) { //do stuff with our data API });
17
define(‘winjs’, function () { return WinJS; }); define(‘class’, [‘winjs’], function (winjs) { return winjs.Class; });
32
var worker = new Worker(‘ms-appx:///js/worker.js’); worker.addEventListener(‘message’, function (evt) { //handle worker doing stuff });
35
Gotcha’s
43
Limitation
49
Final thoughts
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.