MovingBoxes icon indicating copy to clipboard operation
MovingBoxes copied to clipboard

How To move mb-controls to top?

Open TylerDurdon opened this issue 12 years ago • 1 comments

Hello, i need to put the Links in mb-controls to the top (before mb-scroll). Can anyone help me ?

Thx

TylerDurdon avatar Jun 17 '13 10:06 TylerDurdon

This should do what you're looking for:

$('#slider').movingBoxes({
    preinit: function(){
        var $wrapper = $(this).closest('.mb-wrapper'),
            $controls = $wrapper.find('.mb-controls');
        $wrapper.prepend($controls);
    },

    // if true, navigation links will be added
    buildNav: true
});

JamyGolden avatar Jun 20 '13 11:06 JamyGolden