File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ $(function () {
7777 }
7878
7979 /**
80- * Displays meta data
80+ * Displays metadata
8181 *
82- * @param {object } [data] Meta data object
82+ * @param {object } [data] Metadata object
8383 */
8484 function displayMetaData ( data ) {
8585 if ( ! data ) return
@@ -103,7 +103,7 @@ $(function () {
103103 * Updates the results view
104104 *
105105 * @param {* } img Image or canvas element
106- * @param {object } [data] Meta data object
106+ * @param {object } [data] Metadata object
107107 */
108108 function updateResults ( img , data ) {
109109 if ( ! ( img . src || img instanceof HTMLCanvasElement ) ) {
Original file line number Diff line number Diff line change 425425 }
426426 }
427427
428- // Registers the Exif parser for the APP1 JPEG meta data segment:
428+ // Registers the Exif parser for the APP1 JPEG metadata segment:
429429 loadImage . metaDataParsers . jpeg [ 0xffe1 ] . push ( loadImage . parseExifData )
430430
431431 loadImage . exifWriters = {
Original file line number Diff line number Diff line change 223223 }
224224 }
225225
226- // Registers this IPTC parser for the APP13 JPEG meta data segment:
226+ // Registers this IPTC parser for the APP13 JPEG metadata segment:
227227 loadImage . metaDataParsers . jpeg [ 0xffed ] . push ( loadImage . parseIptcData )
228228
229229 loadImage . IptcMap = IptcMap
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ Exif orientation values to correctly display the letter F:
107107 * Determines if the orientation requires a canvas element.
108108 *
109109 * @param {object } [options] Options object
110- * @param {boolean } [withMetaData] Is meta data required for orientation
110+ * @param {boolean } [withMetaData] Is metadata required for orientation
111111 * @returns {boolean } Returns true if orientation requires canvas/meta
112112 */
113113 function requiresCanvasOrientation ( options , withMetaData ) {
@@ -187,7 +187,7 @@ Exif orientation values to correctly display the letter F:
187187 )
188188 }
189189
190- // Determines if meta data should be loaded automatically:
190+ // Determines if metadata should be loaded automatically:
191191 loadImage . requiresMetaData = function ( options ) {
192192 return (
193193 requiresCanvasOrientation ( options , true ) ||
You can’t perform that action at this time.
0 commit comments