Skip to content

Instantly share code, notes, and snippets.

@hito-asa
hito-asa / gist:5185573
Created March 18, 2013 07:30
enable fullscreen mode for co-meeting
$(function() {
$("#account-menus ul").append("<li><a href='#' id='fullscreen-menu'>フルスクリーン</a></li>");
$("#fullscreen-menu").click(function () {
$("#header").remove();
$("#footer").remove();
$("#guide").remove();
$("#side-panel").remove();
$("#main-header").remove();
$("#main-subheader").remove();
$("#online-demo-support-tab").remove();
@tyoshikawa1106
tyoshikawa1106 / AccountRegister.page
Last active August 29, 2015 14:13
Apex Security Check Sample
<apex:page controller="AccountRegisterController" showHeader="true" sidebar="false" tabStyle="Account" id="page">
<div id="vf-page">
<apex:sectionHeader title="{!$ObjectType.Account.Label}" subtitle="Account Register" />
<apex:form id="form">
<apex:pageBlock title="Account Register" mode="edit" id="block">
<apex:pagemessages id="msg"/>
<apex:pageBlockButtons location="bottom" id="buttons">
<apex:commandButton value=" Save " title=" Save " action="{!doSave}" reRender="form" id="saveBtn" />
</apex:pageBlockButtons>
<apex:pageBlockSection title="Account Information" id="section">