Updated Style Guide (markdown)

kkujala 2011-12-06 14:27:03 -08:00
parent 02955c0165
commit 62c19c413a

@ -2,7 +2,7 @@
## Classes
The standard way of creating classes in pdf.js is the following. Please note that by class we mean an object that is class-like.
<pre>
var Name = (function NameConstructor() {
var Name = (function NameClosure() {
function Name(name) {
this.name = name;
}