@@ -15,8 +15,7 @@ $(function () {
1515 'use strict'
1616
1717 var result = $ ( '#result' )
18- var exifNode = $ ( '#exif' )
19- var iptcNode = $ ( '#iptc' )
18+ var metaNode = $ ( '#meta' )
2019 var thumbNode = $ ( '#thumbnail' )
2120 var actionsNode = $ ( '#actions' )
2221 var coordinates
@@ -93,10 +92,10 @@ $(function () {
9392 orientation : exif . get ( 'Orientation' )
9493 } )
9594 }
96- displayTagData ( exifNode , exif . getAll ( ) , 'TIFF' )
95+ displayTagData ( metaNode , exif . getAll ( ) , 'TIFF' )
9796 }
9897 if ( iptc ) {
99- displayTagData ( iptcNode , iptc . getAll ( ) , 'IPTC' )
98+ displayTagData ( metaNode , iptc . getAll ( ) , 'IPTC' )
10099 }
101100 }
102101
@@ -153,8 +152,7 @@ $(function () {
153152 imageSmoothingEnabled : $ ( '#image-smoothing' ) . is ( ':checked' ) ,
154153 meta : true
155154 }
156- exifNode . hide ( ) . find ( 'table' ) . remove ( )
157- iptcNode . hide ( ) . find ( 'table' ) . remove ( )
155+ metaNode . hide ( ) . find ( 'table' ) . remove ( )
158156 thumbNode . hide ( ) . empty ( )
159157 if ( ! loadImage ( file , updateResults , options ) ) {
160158 result
0 commit comments