diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-12-30 11:23:22 -0800 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-12-30 11:23:22 -0800 |
commit | b186d31ce6b0502898e93cfa5e69e2d0da0758d0 (patch) | |
tree | 29560154f28c0e4df80ad93df4397c2178a72fc7 /phpBB/adm/style/acp_modules.html | |
parent | be67124dc7d5461c9b085e4dc3f32ece87e4b1aa (diff) | |
parent | 06262aca541691fd28f02d9b6983b57429f4a671 (diff) | |
download | forums-b186d31ce6b0502898e93cfa5e69e2d0da0758d0.tar forums-b186d31ce6b0502898e93cfa5e69e2d0da0758d0.tar.gz forums-b186d31ce6b0502898e93cfa5e69e2d0da0758d0.tar.bz2 forums-b186d31ce6b0502898e93cfa5e69e2d0da0758d0.tar.xz forums-b186d31ce6b0502898e93cfa5e69e2d0da0758d0.zip |
Merge pull request #1920 from prototech/ticket/12038
[ticket/12038] AJAXify move up/down buttons for various ACP pages.
Diffstat (limited to 'phpBB/adm/style/acp_modules.html')
-rw-r--r-- | phpBB/adm/style/acp_modules.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_modules.html b/phpBB/adm/style/acp_modules.html index 5024a950b9..c7688a610c 100644 --- a/phpBB/adm/style/acp_modules.html +++ b/phpBB/adm/style/acp_modules.html @@ -151,9 +151,9 @@ <td style="width: 15%; white-space: nowrap; text-align: center; vertical-align: middle;"> <!-- IF modules.MODULE_ENABLED --><a href="{modules.U_DISABLE}">{L_DISABLE}</a><!-- ELSE --><a href="{modules.U_ENABLE}">{L_ENABLE}</a><!-- ENDIF --> </td> <td class="actions"> <span class="up-disabled" style="display:none;">{ICON_MOVE_UP_DISABLED}</span> - <span class="up"><a href="{modules.U_MOVE_UP}">{ICON_MOVE_UP}</a></span> + <span class="up"><a href="{modules.U_MOVE_UP}" data-ajax="row_up">{ICON_MOVE_UP}</a></span> <span class="down-disabled" style="display:none;">{ICON_MOVE_DOWN_DISABLED}</span> - <span class="down"><a href="{modules.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a></span> + <span class="down"><a href="{modules.U_MOVE_DOWN}" data-ajax="row_down">{ICON_MOVE_DOWN}</a></span> <a href="{modules.U_EDIT}">{ICON_EDIT}</a> <a href="{modules.U_DELETE}" data-ajax="row_delete">{ICON_DELETE}</a> </td> |