Skip to content

Commit

Permalink
3.3.3: remove outdated style imports
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Dec 9, 2017
1 parent bcfc8e2 commit 482c945
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions book/static/js/es6_modules/books/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import {bookListTemplate,
} from "./templates"
import {ImageDB} from "../images/database"
import {ImageSelectionDialog} from "../images/selection-dialog"
import {defaultDocumentStyle, documentStyleList} from "../style/documentstyle-list"
import {defaultCitationStyle, citationDefinitions} from "../style/citation-definitions"
import {deactivateWait, addAlert, csrfToken} from "../common"


Expand Down Expand Up @@ -310,8 +308,8 @@ export class BookActions {
keywords: ''
},
settings: {
citationstyle: defaultCitationStyle,
documentstyle: defaultDocumentStyle,
citationstyle: this.bookList.styles.citation_styles[0],
documentstyle: this.bookList.styles.document_styles[0],
papersize: 'octavo'
}
}
Expand All @@ -334,8 +332,8 @@ export class BookActions {
dialogHeader,
book,
documentList: this.bookList.documentList,
citationDefinitions,
documentStyleList,
citationDefinitions: this.bookList.styles.citation_styles,
documentStyleList: this.bookList.styles.document_styles,
imageDB: {db: Object.assign({}, imageDB.db, bookImageDB.db)}
})
let that = this
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='fiduswriter-books',
version='3.3.2',
version='3.3.3',
packages=find_packages(),
include_package_data=True,
license='AGPL License',
Expand Down

0 comments on commit 482c945

Please sign in to comment.