mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-12 16:58:17 +08:00
* milestones refactored with styled text * reference refactored * refactor commit references * fix styled text bug * request event refactored * refactor titles * warm caches for bg-gen models * delete old text cell * move shortlinks into MMMarkdown * almost there * build green * running and trimming whitespaces * styled text working * fix tests * tests passing
21 lines
367 B
Swift
21 lines
367 B
Swift
//
|
|
// IssueReferencedCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 7/9/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
final class IssueReferencedCommitCell: StyledTextViewCell {
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(_ model: IssueReferencedCommitModel) {
|
|
set(renderer: model.string)
|
|
}
|
|
|
|
}
|