mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Controlgroup: Fix headers and demos
This commit is contained in:
parent
a00c02513d
commit
f6879fc0f5
@ -5,13 +5,6 @@
|
|||||||
<title>jQuery UI Controlgroup - Default Functionality</title>
|
<title>jQuery UI Controlgroup - Default Functionality</title>
|
||||||
<link rel="stylesheet" href="../../themes/base/all.css">
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
||||||
<link rel="stylesheet" href="../demos.css">
|
<link rel="stylesheet" href="../demos.css">
|
||||||
<script src="../../external/requirejs/require.js"></script>
|
|
||||||
<script src="../bootstrap.js">
|
|
||||||
$( ".controlgroup" ).controlgroup()
|
|
||||||
$( ".controlgroup-vertical" ).controlgroup({
|
|
||||||
"direction": "vertical"
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<style>
|
<style>
|
||||||
.ui-controlgroup-vertical {
|
.ui-controlgroup-vertical {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
@ -20,6 +13,13 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<script src="../../external/requirejs/require.js"></script>
|
||||||
|
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
||||||
|
$( ".controlgroup" ).controlgroup()
|
||||||
|
$( ".controlgroup-vertical" ).controlgroup({
|
||||||
|
"direction": "vertical"
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="widget">
|
<div class="widget">
|
||||||
|
@ -5,11 +5,16 @@
|
|||||||
<title>jQuery UI Controlgroup - Split Button</title>
|
<title>jQuery UI Controlgroup - Split Button</title>
|
||||||
<link rel="stylesheet" href="../../themes/base/all.css">
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
||||||
<link rel="stylesheet" href="../demos.css">
|
<link rel="stylesheet" href="../demos.css">
|
||||||
|
<style>
|
||||||
|
.ui-button-icon-only.demo-splitbutton-select {
|
||||||
|
width: 1em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script src="../../external/requirejs/require.js"></script>
|
<script src="../../external/requirejs/require.js"></script>
|
||||||
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
||||||
$( "select" ).selectmenu({
|
$( "select" ).selectmenu({
|
||||||
classes: {
|
classes: {
|
||||||
"ui-selectmenu-button": "ui-button-icon-only"
|
"ui-selectmenu-button": "ui-button-icon-only demo-splitbutton-select"
|
||||||
},
|
},
|
||||||
change: function(){
|
change: function(){
|
||||||
$( ".output" ).append( "<li>" + this.value + "</li>" );
|
$( ".output" ).append( "<li>" + this.value + "</li>" );
|
||||||
|
@ -5,6 +5,30 @@
|
|||||||
<title>jQuery UI Controlgroup - Toolbar</title>
|
<title>jQuery UI Controlgroup - Toolbar</title>
|
||||||
<link rel="stylesheet" href="../../themes/base/all.css">
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
||||||
<link rel="stylesheet" href="../demos.css">
|
<link rel="stylesheet" href="../demos.css">
|
||||||
|
<style>
|
||||||
|
.toolbar {
|
||||||
|
font-size: .75em;
|
||||||
|
}
|
||||||
|
.toolbar .ui-selectmenu-button {
|
||||||
|
width: auto;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#zoom, #fontsize {
|
||||||
|
min-width: 75px;
|
||||||
|
}
|
||||||
|
#input {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#input, #display {
|
||||||
|
width: 98%;
|
||||||
|
height: 300px;
|
||||||
|
border: 2px inset #ccc;
|
||||||
|
font-size: 11px;
|
||||||
|
font-family: "Lucida Grande";
|
||||||
|
zoom: 100%;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script src="../../external/requirejs/require.js"></script>
|
<script src="../../external/requirejs/require.js"></script>
|
||||||
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
||||||
var iframe = $( "<iframe id='display' contenteditable='true'>" ),
|
var iframe = $( "<iframe id='display' contenteditable='true'>" ),
|
||||||
@ -46,23 +70,6 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style>
|
|
||||||
#zoom, #fontsize {
|
|
||||||
min-width: 75px;
|
|
||||||
}
|
|
||||||
#input {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#input, #display {
|
|
||||||
width: 98%;
|
|
||||||
height: 300px;
|
|
||||||
border: 2px inset #ccc;
|
|
||||||
font-size: 11px;
|
|
||||||
font-family: "Lucida Grande";
|
|
||||||
zoom: 100%;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="toolbar">
|
<div class="toolbar">
|
||||||
|
@ -2,12 +2,19 @@
|
|||||||
* jQuery UI Controlgroup @VERSION
|
* jQuery UI Controlgroup @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2014 jQuery Foundation and other contributors
|
* Copyright jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
|
||||||
* http://api.jqueryui.com/controlgroup/
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
//>>label: Controlgroup
|
||||||
|
//>>group: Widgets
|
||||||
|
//>>description: Visually groups form control widgets
|
||||||
|
//>>docs: http://api.jqueryui.com/controlgroup/
|
||||||
|
//>>demos: http://jqueryui.com/controlgroup/
|
||||||
|
//>>css.structure: ../themes/base/core.css, ../themes/base/controlgroup.css
|
||||||
|
//>>css.theme: ../themes/base/theme.css
|
||||||
|
|
||||||
( function( factory ) {
|
( function( factory ) {
|
||||||
if ( typeof define === "function" && define.amd ) {
|
if ( typeof define === "function" && define.amd ) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user