Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
Fix mutable var and warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hebertialmeida committed Oct 6, 2016
1 parent d5c1917 commit 94a014f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/FolioReaderPage.swift
Expand Up @@ -108,7 +108,7 @@ public class FolioReaderPage: UICollectionViewCell, UIWebViewDelegate, UIGesture

func loadHTMLString(htmlContent: String!, baseURL: NSURL!) {
// Insert the stored highlights to the HTML
var tempHtmlContent = htmlContentWithInsertHighlights(htmlContent)
let tempHtmlContent = htmlContentWithInsertHighlights(htmlContent)
// Load the html into the webview
webView.alpha = 0
webView.loadHTMLString(tempHtmlContent, baseURL: baseURL)
Expand Down

0 comments on commit 94a014f

Please sign in to comment.