|
|
|
@ -617,7 +617,8 @@ var PopupElement = (function PopupElementClosure() {
@@ -617,7 +617,8 @@ var PopupElement = (function PopupElementClosure() {
|
|
|
|
|
var HighlightAnnotationElement = ( |
|
|
|
|
function HighlightAnnotationElementClosure() { |
|
|
|
|
function HighlightAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(HighlightAnnotationElement, AnnotationElement, { |
|
|
|
@ -644,7 +645,8 @@ var HighlightAnnotationElement = (
@@ -644,7 +645,8 @@ var HighlightAnnotationElement = (
|
|
|
|
|
var UnderlineAnnotationElement = ( |
|
|
|
|
function UnderlineAnnotationElementClosure() { |
|
|
|
|
function UnderlineAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(UnderlineAnnotationElement, AnnotationElement, { |
|
|
|
@ -670,7 +672,8 @@ var UnderlineAnnotationElement = (
@@ -670,7 +672,8 @@ var UnderlineAnnotationElement = (
|
|
|
|
|
*/ |
|
|
|
|
var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() { |
|
|
|
|
function SquigglyAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(SquigglyAnnotationElement, AnnotationElement, { |
|
|
|
@ -697,7 +700,8 @@ var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() {
@@ -697,7 +700,8 @@ var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() {
|
|
|
|
|
var StrikeOutAnnotationElement = ( |
|
|
|
|
function StrikeOutAnnotationElementClosure() { |
|
|
|
|
function StrikeOutAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(StrikeOutAnnotationElement, AnnotationElement, { |
|
|
|
|