mirror of
https://github.com/koreader/koreader.git
synced 2025-12-24 12:14:05 +01:00
move configurable to Document class
since every document type is depend on it now
This commit is contained in:
@@ -60,24 +60,26 @@ Document = {
|
||||
number_of_pages = 0,
|
||||
-- if not pageable, length of the document in pixels
|
||||
doc_height = 0,
|
||||
|
||||
|
||||
-- other metadata
|
||||
title = "",
|
||||
author = "",
|
||||
date = ""
|
||||
},
|
||||
|
||||
|
||||
GAMMA_NO_GAMMA = 1.0,
|
||||
|
||||
|
||||
-- override bbox from orignal page's getUsedBBox
|
||||
bbox = {},
|
||||
|
||||
|
||||
-- flag to show whether the document was opened successfully
|
||||
is_open = false,
|
||||
error_message = nil,
|
||||
|
||||
-- flag to show that the document needs to be unlocked by a password
|
||||
is_locked = false,
|
||||
|
||||
configurable = Configurable,
|
||||
}
|
||||
|
||||
function Document:new(o)
|
||||
|
||||
Reference in New Issue
Block a user