I hereby claim:
- I am boek on github.
- I am boek (https://keybase.io/boek) on keybase.
- I have a public key ASDJxtcjBSwGaGa9fKKkNZqox5wZQdS5i3RdbYlxerrJGQo
To claim this, I am signing this object:
| Company: | |
| Role: | |
| Full-time: | |
| Remote OK: | |
| Sponsorship: | |
| Contact: | |
| Location: | |
| Relocation Assistance: | |
| Brief Description: |
| @@ -9,6 +9,7 @@ import android.view.View | |
| import android.widget.ImageView | |
| import android.widget.TextView | |
| import androidx.appcompat.widget.AppCompatImageButton | |
| +import androidx.core.content.ContextCompat | |
| import androidx.recyclerview.widget.RecyclerView | |
| import mozilla.components.browser.tabstray.BrowserTabsTray | |
| import mozilla.components.browser.tabstray.TabViewHolder | |
| @@ -64,24 +65,17 @@ class TabTrayViewHolder(itemView: View) : TabViewHolder(itemView) { | |
| mozac:tabsTraySelectedItemUrlTextColor="?tabTrayItemUrl" |
| diff --git a/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt b/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| index 3f5eecfb..bc51ba84 100644 | |
| --- a/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| +++ b/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| @@ -22,27 +22,23 @@ open class LibraryPageView( | |
| protected val activity = context.asActivity() | |
| protected fun setUiForNormalMode( | |
| - title: String?, | |
| - libraryItemsList: RecyclerView |
| diff --git a/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt b/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| index 3f5eecfb..bc51ba84 100644 | |
| --- a/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| +++ b/app/src/main/java/org/mozilla/fenix/library/LibraryPageView.kt | |
| @@ -22,27 +22,23 @@ open class LibraryPageView( | |
| protected val activity = context.asActivity() | |
| protected fun setUiForNormalMode( | |
| - title: String?, | |
| - libraryItemsList: RecyclerView |
| --- a/app/src/main/java/org/mozilla/fenix/library/history/viewholders/HistoryListItemViewHolder.kt | |
| +++ b/app/src/main/java/org/mozilla/fenix/library/history/viewholders/HistoryListItemViewHolder.kt | |
| @@ -45,8 +45,6 @@ class HistoryListItemViewHolder( | |
| showDeleteButton: Boolean, | |
| mode: HistoryFragmentState.Mode | |
| ) { | |
| - this.item = item | |
| - | |
| itemView.history_layout.titleView.text = item.title | |
| itemView.history_layout.urlView.text = item.url |
| extension Subreddit { | |
| var data: Data { NSKeyedArchiver.archivedData(withRootObject: self) } | |
| } | |
| let currentSubreddit: Subreddit? = nil | |
| let currentSubredditData = currentSubreddit?.data |
I hereby claim:
To claim this, I am signing this object:
| func test08PasteAndGo() { | |
| let app = XCUIApplication() | |
| // Inject a string into clipboard | |
| let clipboardString = "Hello world" | |
| UIPasteboard.general.string = clipboardString | |
| // Enter 'mozilla' on the search field | |
| let searchOrEnterAddressTextField = app.textFields["URLBar.urlText"] | |
| searchOrEnterAddressTextField.typeText("mozilla.org\n") |
I hereby claim:
To claim this, I am signing this object:
| extension UIView { | |
| static func build<T: UIView>(builder: ((T) -> ())? = nil) -> T { | |
| let view = T(frame: .zero) | |
| view.setTranslatesAutoresizingMaskIntoConstraints(false) | |
| builder?(view) | |
| return view | |
| } | |
| } |