<!--
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<title>paper-drawer-panel demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="http://blasten.github.io/ripple/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="http://blasten.github.io/ripple/bower_components/paper-elements/paper-elements.html">
<link rel="import" href="http://blasten.github.io/ripple/bower_components/paper-header-panel/paper-header-panel.html">
</head>
<body>
<paper-drawer-panel>
<paper-header-panel drawer>
<paper-toolbar>
<div title>Menu</div>
</paper-toolbar>
<paper-menu attr-for-selected='hash' class='list' selected='home'>
<paper-item hash='home'>
<paper-icon-button icon='home'></paper-icon-button>
<a onClick="jQuery.get( '/', {}, null, 'script' );return false;" href="javascript:void(0);">Dashboard</a>
</paper-item>
<paper-item hash='help'>
<paper-icon-button icon='help'></paper-icon-button>
<a onClick="jQuery.get( '/home/help', {}, null, 'script' );return false;" href="javascript:void(0);">Help</a>
</paper-item>
</paper-menu>
</paper-header-panel>
<paper-header-panel main>
<paper-toolbar id='mainToolbar'>
<paper-icon-button elevation='1' icon='menu' paper-drawer-toggle></paper-icon-button>
<div title>Application Name</div>
</paper-toolbar>
<div class='content m-scene' id='main-content'>
<div class='container m-right-panel m-page scene_element scene_element--fadeinright'>
content
</div>
</div>
</paper-header-panel>
</paper-drawer-panel>
<script>
(function(global) {
'use strict';
var DRAWER_ATTR = 'right-drawer';
var pdp = document.getElementById('paperDrawerPanel');
global.flipDrawer = function() {
if (pdp.hasAttribute(DRAWER_ATTR)) {
pdp.removeAttribute(DRAWER_ATTR);
} else {
pdp.setAttribute(DRAWER_ATTR, '');
}
}
}(this));
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |