- Senior Software Developer for LeanKit (http://leankit.com)
- Knockout.js core team (http://knockoutjs.com)
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
/*-------------------------------------------------------------------------- | |
* linq.js - LINQ for JavaScript | |
* ver 2.2.0.2 (Jan. 21th, 2011) | |
* | |
* created and maintained by neuecc <[email protected]> | |
* licensed under Microsoft Public License(Ms-PL) | |
* http://neue.cc/ | |
* http://linqjs.codeplex.com/ | |
*--------------------------------------------------------------------------*/ |
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
/* Foundation v2.1.1 http://foundation.zurb.com */ | |
/* Artfully Masterminded by ZURB */ | |
/* -------------------------------------------------- | |
Reveal Modals | |
-------------------------------------------------- */ | |
.reveal-modal-bg { | |
position: fixed; |
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
// This is an example of one possible way to make a reusable component (or 'plugin'), consisting of: | |
// * A view model class, which gives a way to configure the component and to interact with it (e.g., by exposing currentPageIndex as an observable, external code can change the page index) | |
// * A custom binding (ko.bindingHandlers.simpleGrid in this example) so a developer can place instances of it into the DOM | |
// - in this example, the custom binding works by rendering some predefined templates using the ko.jqueryTmplTemplateEngine template engine | |
// | |
// There are loads of ways this grid example could be expanded. For example, | |
// * Letting the developer override the templates used to create the table header, table body, and page links div | |
// * Adding a "sort by clicking column headers" option | |
// * Creating some API to fetch table data using Ajax requests | |
// ... etc |
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
require.config({ | |
paths: { | |
"knockout": "../../ext/knockout-2.1.0", | |
"jquery": "../../ext/jquery.min", | |
"kendo": "../../ext/kendo.all.min", | |
"knockout-kendo": "../../build/knockout-kendo.min" | |
}, | |
shim: { | |
"kendo": { | |
deps: ["jquery"], |
Ryan Niemeyer - [email protected] - @rpniemeyer - leankit.com
Start here for all things VS Code: https://code.visualstudio.com/
Github project here: https://github.com/Microsoft/vscode