-
-
Save raphaelsaunier/5ba96b2d933c643e3d91f4940e739c13 to your computer and use it in GitHub Desktop.
Unlocking iPhone iOS 11 - WIP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unlocking iPhone iOS 11 - WIP | |
Sleep | |
press home button -> Lock screen | |
press side button -> Lock screen | |
raise phone -> Lock screen | |
Lock screen | |
swipe right -> Widgets | |
swipe left -> Camera | |
Widgets | |
Show Widgets | |
press edit -> Add Widgets | |
press search bar -> Search | |
Add Widgets | |
press cancel -> Widgets | |
press done -> Widgets | |
Search | |
Search First Run? | |
true? -> About Search | |
false? -> Active Search | |
About Search | |
continue -> Active Search | |
Active Search | |
cancel -> Widgets | |
Siri Privacy | |
done -> Search | |
Camera | |
press home button -> Sleep | |
press side button -> Sleep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
if (model.active_states[0].image_url) { | |
return $("img", | |
{src: model.active_states[0].image_url, style: {height: "100%"}}); | |
} else { | |
return "No image available." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment