Skip to content

Commit

Permalink
new gen of xpi file
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuckley8877332 committed Nov 20, 2009
1 parent 1ca34bb commit 9e4076e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Binary file added dist/pixelperfect-1.5.5.xpi
Binary file not shown.
4 changes: 3 additions & 1 deletion srcExtension/chrome/pixelperfect/content/fileUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ pixelPerfect.fileUtils = function () {
if(entry.isFile()) {
var filePath = entry.path;
var justFileName = filePath.substring(filePath.lastIndexOf(this.directorySeperator) + 1, filePath.length);
array.push(justFileName);
if(justFileName != ".leave") {
array.push(justFileName);
}
}
}
return array;
Expand Down
4 changes: 2 additions & 2 deletions srcExtension/chrome/pixelperfect/content/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ pixelPerfect.utils = function () {
},

fireEyeClickEvent: function(eyeEleId, doc) {
if(eyeEleId != '') {
var fireOnThisEye = doc.getElementById(eyeEleId);
var fireOnThisEye = doc.getElementById(eyeEleId);
if(fireOnThisEye != null && eyeEleId != undefined && eyeEleId != '') {
var evObj = doc.createEvent('MouseEvents');
evObj.initEvent( 'click', true, true );
fireOnThisEye.dispatchEvent(evObj);
Expand Down
3 changes: 1 addition & 2 deletions srcExtension/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
<em:iconURL>chrome://pixelperfect/content/images/logo_32x32.png</em:iconURL>
<em:homepageURL>http://www.pixelperfectplugin.com/</em:homepageURL>
<em:id>[email protected]</em:id>
<em:version>1.5.0</em:version>
<em:updateURL/>
<em:version>1.5.5</em:version>
<em:type>2</em:type>
<em:targetApplication>
<RDF:Description>
Expand Down

0 comments on commit 9e4076e

Please sign in to comment.