Skip to content

Instantly share code, notes, and snippets.

@dristic
dristic / index.html
Created May 28, 2013 19:03
Chat room listing for PubNub Messenger application.
<!-- Chat List Page -->
<div data-role="page" id="chatListPage" data-theme="c" class="type-chat-list">
<div data-role="header">
<h1>Current Chats</h1>
</div>
<div data-role="content">
<input type="text" name="name" id="chatRoomName" placeholder="Chat Room Name" />
<a href="#" id="newChatButton" data-role="button">Join New Chat</a>
@dristic
dristic / index.html
Last active August 3, 2020 11:49
Initial chat page for PubNub Messenger Tutorial.
<!-- Chat Page -->
<div data-role="page" id="chatPage" data-theme="c" class="type-interior">
<div data-role="content">
<div data-role="header" data-position="fixed" data-tap-toggle="false">
<h1>Pub Messenger</h1>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" id="messageList">
@dristic
dristic / index.html
Created May 20, 2013 23:12
Header section for PubNub Messenger.
<head>
<title>PubNub Messenger</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon href=icon.png">
<link rel="apple-touch-startup-image href=startup.png">