API.txt |
API.txt |
|
As well as attaching popup behavior to links,
Popups API provides javascript function for creating in-window popup messages.
TODO: Add more togglable options like non-modal & auto-close.
Drupal.popups.message(title, message)
Produces a… |
CHANGELOG.txt |
CHANGELOG.txt |
|
6.x-1.3
New Feature for Popups: Subedit. Backported from 6.x-2.0-Alpha4
* Broadcast "Popups Open Path Done" event.
6.x--1-2
Note
* Rebranching 6.x-1.2 from 6.x-1.2-alpha1.
* Removing more advanced feature in alpha2 and alpha3.
* Aiming… |
popups-popup.tpl.php |
popups-popup.tpl.php |
|
|
popups-skin.css |
popups-skin.css |
|
#popups {
border: 2px solid #EDF5FA;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
opacity: 0.9;
}
#popups-title {
border-bottom: 1px solid #b4d7f0;
background-color: #d4e7f3;
color: #455067;
margin-bottom: 0.25em;
padding:… |
popups.css |
popups.css |
|
/*
** Ajax popups dialog box styles
*/
#popups-overlay {
position: absolute;
background: black;
z-index: 9;
top: 0;
}
#popups-loading {
z-index: 10;
opacity: 0.75;
position: relative;
}
#popups-loading div {
position: absolute; … |
popups.info |
popups.info |
|
name = Popups API
description = General dialog creation utilities
package = User interface
core = 6.x |
popups.install |
popups.install |
|
|
popups.module |
popups.module |
|
This module provides a hook_popups for links to be openned in an Ajax Popup Dialog. |
popups_admin.info |
popups_admin.info |
|
name = Popups: Administration Links
description = Uses the Popups API to add popups to various administration pages.
package = User interface
core = 6.x
dependencies[] = popups |
popups_admin.module |
popups_admin.module |
|
Uses the popups API to add some popups to admin pages. |
popups_test.info |
popups_test.info |
|
name = Popups: Test Page
description = Test the Popups API.
package = User interface
core = 6.x
dependencies[] = popups |
popups_test.module |
popups_test.module |
|
Page for testing the Popups API. |
README.txt |
README.txt |
|
This module gives Drupal the ability to easily change links into popup dialog boxes.
IMPORTANT INSTRUCTIONS
------------------------------------------------------------------------------------
Ajax updating only works with themes that have… |