Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
7e5b304d
Commit
7e5b304d
authored
Sep 10, 2011
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add liscense to js files
parent
c40e0de3
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
127 additions
and
11 deletions
+127
-11
js/bootstrap-alerts.js
js/bootstrap-alerts.js
+20
-0
js/bootstrap-dropdown.js
js/bootstrap-dropdown.js
+23
-3
js/bootstrap-modal.js
js/bootstrap-modal.js
+20
-0
js/bootstrap-popover.js
js/bootstrap-popover.js
+22
-5
js/bootstrap-scrollspy.js
js/bootstrap-scrollspy.js
+2
-2
js/bootstrap-tabs.js
js/bootstrap-tabs.js
+20
-0
js/bootstrap-twipsy.js
js/bootstrap-twipsy.js
+20
-1
No files found.
js/bootstrap-alerts.js
View file @
7e5b304d
/* ==========================================================
* bootstrap-alerts.js
* http://twitter.github.com/bootstrap/javascript.html#alerts
* ==========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================== */
(
function
(
$
){
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
...
...
js/bootstrap-dropdown.js
View file @
7e5b304d
(
function
(
$
){
/* ============================================================
* bootstrap-dropdown.js
* http://twitter.github.com/bootstrap/javascript.html#dropdown
* ============================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============================================================ */
/* DROPDOWN PLUGIN DEFINITION
* ========================== */
(
function
(
$
){
var
selector
=
'
a.menu, .dropdown-toggle
'
...
...
@@ -13,6 +30,9 @@
$
(
'
body
'
).
bind
(
"
click
"
,
clearMenus
)
})
/* DROPDOWN PLUGIN DEFINITION
* ========================== */
$
.
fn
.
dropdown
=
function
(
options
)
{
return
this
.
each
(
function
()
{
$
(
this
).
delegate
(
selector
,
'
click
'
,
function
(
e
)
{
...
...
js/bootstrap-modal.js
View file @
7e5b304d
/* =========================================================
* bootstrap-modal.js
* http://twitter.github.com/bootstrap/javascript.html#modal
* =========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */
(
function
(
$
){
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
...
...
js/bootstrap-popover.js
View file @
7e5b304d
/* EXTENDS BOOTSTRAP-TWIPSY.js
=========================== */
/* ===========================================================
* bootstrap-popover.js
* http://twitter.github.com/bootstrap/javascript.html#popover
* ===========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================================================== */
(
function
(
$
)
{
/* POPOVER PUBLIC CLASS DEFINITION
* ============================== */
(
function
(
$
)
{
var
Popover
=
function
(
element
,
options
)
{
this
.
$element
=
$
(
element
)
...
...
@@ -12,6 +26,9 @@
this
.
enabled
=
true
}
/* NOTE: POPOVER EXTENDS BOOTSTRAP-TWIPSY.js
========================================= */
Popover
.
prototype
=
$
.
extend
({},
$
.
fn
.
twipsy
.
Twipsy
.
prototype
,
{
setContent
:
function
()
{
...
...
js/bootstrap-scrollspy.js
View file @
7e5b304d
...
...
@@ -15,8 +15,8 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ==============================================================
*/
* ==============================================================
*/
!
function
(
$
)
{
...
...
js/bootstrap-tabs.js
View file @
7e5b304d
/* ========================================================
* bootstrap-tabs.js
* http://twitter.github.com/bootstrap/javascript.html#tabs
* ========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ======================================================== */
(
function
(
$
){
function
activate
(
element
,
container
)
{
...
...
js/bootstrap-twipsy.js
View file @
7e5b304d
/* Adapted from the original jQuery.tipsy by Jason Frame */
/* ==========================================================
* bootstrap-twipsy.js
* http://twitter.github.com/bootstrap/javascript.html#twipsy
* Adapted from the original jQuery.tipsy by Jason Frame
* ==========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================== */
(
function
(
$
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment