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
///<reference path="../rx/rx.d.ts"/> | |
declare module Rx { | |
declare module DOM { | |
export interface AjaxSettings { | |
async?: boolean; | |
body?: string; | |
// This options does not seem to be used in the code yet | |
// contentType?: string; | |
crossDomain?: boolean; |
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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
indent_size = 2 |
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
var express = require('express'); | |
var app = express(); | |
app.use(express.static(__dirname)); | |
app.listen(3000); |
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
# ----------------- | |
# -------------------------------------------------------------------- | |
# JSHint Configuration, Strict Edition | |
# -------------------------------------------------------------------- | |
# | |
# This is a options template for [JSHint][1], using [JSHint example][2] | |
# and [Ory Band's example][3] as basis and setting config values to | |
# be most strict: | |
# | |
# * set all enforcing options to true |
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
<!doctype html> | |
<html ng-app='APP'> | |
<head> | |
<meta name="description" content="Angular Nested recursive directives" /> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script> | |
</head> | |
<body> | |
<div ng-controller="IndexCtrl"> | |
<collection collection='tasks'></collection> | |
</div> |
NewerOlder