|
@ -80,6 +80,7 @@ $.fn.dropdown = function(parameters) { |
|
|
|
|
|
|
|
|
initialize: function() { |
|
|
initialize: function() { |
|
|
module.debug('Initializing dropdown', settings); |
|
|
module.debug('Initializing dropdown', settings); |
|
|
|
|
|
|
|
|
if( module.is.alreadySetup() ) { |
|
|
if( module.is.alreadySetup() ) { |
|
|
module.setup.reference(); |
|
|
module.setup.reference(); |
|
|
} |
|
|
} |
|
@ -98,6 +99,8 @@ $.fn.dropdown = function(parameters) { |
|
|
module.observeChanges(); |
|
|
module.observeChanges(); |
|
|
module.instantiate(); |
|
|
module.instantiate(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
module.refreshData(); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
instantiate: function() { |
|
|
instantiate: function() { |
|
@ -352,8 +355,25 @@ $.fn.dropdown = function(parameters) { |
|
|
; |
|
|
; |
|
|
$menu = $module.children(selector.menu); |
|
|
$menu = $module.children(selector.menu); |
|
|
$item = $menu.find(selector.item); |
|
|
$item = $menu.find(selector.item); |
|
|
|
|
|
|
|
|
|
|
|
module.refreshData(); |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
refreshData: function() { |
|
|
|
|
|
$menu |
|
|
|
|
|
.children() |
|
|
|
|
|
.each(function() { |
|
|
|
|
|
$(this).removeData(metadata.text); |
|
|
|
|
|
$(this).removeData(metadata.value); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$module.removeData(metadata.defaultText); |
|
|
|
|
|
$module.removeData(metadata.defaultValue); |
|
|
|
|
|
$module.removeData(metadata.placeholderText); |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toggle: function() { |
|
|
toggle: function() { |
|
|
module.verbose('Toggling menu visibility'); |
|
|
module.verbose('Toggling menu visibility'); |
|
|
if( !module.is.active() ) { |
|
|
if( !module.is.active() ) { |
|
|