Index: trunk/phase3/resources/mediawiki.libs/mediawiki.libs.jpegmeta.js |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | /* Rational number methods */ |
120 | 120 | JpegMeta.Rational.prototype.toString = function toString() { |
121 | 121 | if (this.num === 0) { |
122 | | - return "" + this.num |
| 122 | + return "" + this.num; |
123 | 123 | } |
124 | 124 | if (this.den === 1) { |
125 | 125 | return "" + this.num; |
— | — | @@ -291,7 +291,7 @@ |
292 | 292 | 9 : ["SLONG", 4], |
293 | 293 | 10 : ["SRATIONAL", 8], |
294 | 294 | 11 : ["FLOAT", 4], |
295 | | - 12 : ["DOUBLE", 8], |
| 295 | + 12 : ["DOUBLE", 8] |
296 | 296 | }; |
297 | 297 | |
298 | 298 | this.JpegMeta.JpegFile.prototype._tifftags = { |
— | — | @@ -308,7 +308,7 @@ |
309 | 309 | {1 : "Normal", 2 : "Reverse?", |
310 | 310 | 3 : "Upside-down", 4 : "Upside-down Reverse", |
311 | 311 | 5 : "90 degree CW", 6 : "90 degree CW reverse", |
312 | | - 7 : "90 degree CCW", 8 : "90 degree CCW reverse",}], |
| 312 | + 7 : "90 degree CCW", 8 : "90 degree CCW reverse"}], |
313 | 313 | 277 : ["Number of components", "SamplesPerPixel"], |
314 | 314 | 284 : ["Image data arrangement", "PlanarConfiguration", |
315 | 315 | {1 : "chunky format", 2 : "planar format"}], |
— | — | @@ -342,7 +342,7 @@ |
343 | 343 | 33432 : ["Copyright holder", "Copyright"], |
344 | 344 | |
345 | 345 | 34665 : ["Exif tag", "ExifIfdPointer"], |
346 | | - 34853 : ["GPS tag", "GPSInfoIfdPointer"], |
| 346 | + 34853 : ["GPS tag", "GPSInfoIfdPointer"] |
347 | 347 | }; |
348 | 348 | |
349 | 349 | this.JpegMeta.JpegFile.prototype._exiftags = { |
— | — | @@ -418,7 +418,7 @@ |
419 | 419 | /* H. Other Tags */ |
420 | 420 | 42016 : ["Unique image ID", "ImageUniqueID"], |
421 | 421 | |
422 | | - 40965 : ["Interoperability tag", "InteroperabilityIFDPointer"], |
| 422 | + 40965 : ["Interoperability tag", "InteroperabilityIFDPointer"] |
423 | 423 | }; |
424 | 424 | |
425 | 425 | this.JpegMeta.JpegFile.prototype._gpstags = { |
— | — | @@ -453,7 +453,7 @@ |
454 | 454 | 27 : ["Name of GPS processing method", "GPSProcessingMethod"], |
455 | 455 | 28 : ["Name of GPS area", "GPSAreaInformation"], |
456 | 456 | 29 : ["GPS Date", "GPSDateStamp"], |
457 | | - 30 : ["GPS differential correction", "GPSDifferential"], |
| 457 | + 30 : ["GPS differential correction", "GPSDifferential"] |
458 | 458 | }; |
459 | 459 | |
460 | 460 | this.JpegMeta.JpegFile.prototype._markers = { |
— | — | @@ -535,7 +535,7 @@ |
536 | 536 | 0xfe: ["COM", null], /* Comment */ |
537 | 537 | |
538 | 538 | /* Reserved markers */ |
539 | | - 0x01: ["JPG13", null], /* For temporary private use in arithmetic coding */ |
| 539 | + 0x01: ["JPG13", null] /* For temporary private use in arithmetic coding */ |
540 | 540 | /* 02 -> bf are reserverd */ |
541 | 541 | }; |
542 | 542 | |
— | — | @@ -728,4 +728,4 @@ |
729 | 729 | return new JpegMeta.JpegFile( fileReaderResult, fileName ); |
730 | 730 | }; |
731 | 731 | |
732 | | -} )( jQuery ); |
\ No newline at end of file |
| 732 | +} )( jQuery ); |