Commit 1b263162de9b08b374c07c7ef50208dde7935384
Committed by
Arthur Sturzbecher
1 parent
b64e0763
Exists in
bug_fix_40
Move breadcrumbs block to top of content
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
src/noosfero-spb-theme/theme.js
| ... | ... | @@ -268,10 +268,15 @@ $('#link-buscar').click(function(e) { |
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | + function move_breadcrumbs() { | |
| 272 | + $('.breadcrumbs-plugin_content-breadcrumbs-block').prependTo('#wrap-2'); | |
| 273 | + } | |
| 274 | + | |
| 271 | 275 | $(document).ready(function(){ |
| 272 | 276 | add_tooltips(); |
| 273 | 277 | add_popovers(); |
| 274 | 278 | move_article_buttons(); |
| 279 | + move_breadcrumbs(); | |
| 275 | 280 | insert_notice_div(); |
| 276 | 281 | set_uploaded_files_names(); |
| 277 | 282 | set_tooltip_content(); | ... | ... |