Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion jquery.mediaTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,12 @@ http://www.consulenza-web.com/2012/01/mediatable-jquery-plugin/

// Setup menu title (handler)
wdg.$menu.$header.text(wdg.cfg.menuTitle);
wdg.$table.before(wdg.$menu);

if (wdg.cfg.menuPlacement) {
wdg.cfg.menuPlacement(wdg.$menu);
} else {
wdg.$table.before(wdg.$menu);
}

// Bind screen change events to update checkbox status of displayed fields.
$(window).bind('orientationchange resize',function(){
Expand Down Expand Up @@ -261,6 +266,7 @@ http://www.consulenza-web.com/2012/01/mediatable-jquery-plugin/
// Teach the widget to create a toggle menu to declare column's visibility
menu: true,
menuTitle: 'Columns:',
menuPlacement: false,

t:'e'},arguments[0]);
// -- default configuration block --
Expand Down