Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
chanlee committed May 25, 2016
1 parent 153010b commit ef5ccd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -10364,7 +10364,7 @@ Entry.Pdf = function(b) {
p = Entry.Pdf.prototype;
p.generateView = function(b) {
var a = Entry.createElement("div", "entryPdfWorkspace");
a.addClass("entryHidden");
a.addClass("entryRemove");
this._view = a;
var c = "/pdfjs/web/viewer.html";
b && "" != b && (c += "?file=" + b);
Expand Down
2 changes: 1 addition & 1 deletion dist/entry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/pdf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var p = Entry.Pdf.prototype;
p.generateView = function(file) {
var pdf = this;
var pdfView = Entry.createElement('div', 'entryPdfWorkspace');
pdfView.addClass('entryHidden');
pdfView.addClass('entryRemove');
this._view = pdfView;

var url = '/pdfjs/web/viewer.html';
Expand Down

0 comments on commit ef5ccd8

Please sign in to comment.