W3C Introduction to Web Components - explainer/overview of the technologies
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
// Source: https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc | |
// jsFiddle: http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/ | |
// author: Pawel Kozlowski | |
var myApp = angular.module('myApp', []); | |
//service style, probably the simplest one | |
myApp.service('helloWorldFromService', function() { | |
this.sayHello = function() { | |
return "Hello, World!" |
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
// With Javascript, create a new file and send it to a CouchDB database as an attachment of a Document | |
// Code inspired by "NEW TRICKS IN XMLHTTPREQUEST2" by Eric Bidelman | |
// http://www.html5rocks.com/en/tutorials/file/xhr2/ | |
/* | |
* There are two ways of accomplishing this. The first way will always result in a filename of "blob", which is | |
* bummer. The second way you will be able to name the file what you want. Note that these examples | |
* assume you have the ID of the database, the ID of the Document, and the most recent revision hash of that Document. | |
*/ |