mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
47 lines
707 B
JavaScript
47 lines
707 B
JavaScript
|
var plugins = [
|
||
|
'global',
|
||
|
'core',
|
||
|
'locale',
|
||
|
'touch-handler',
|
||
|
|
||
|
'accordion',
|
||
|
'button-set',
|
||
|
'date-format',
|
||
|
'calendar',
|
||
|
'datepicker',
|
||
|
'carousel',
|
||
|
'countdown',
|
||
|
'dropdown',
|
||
|
'input-control',
|
||
|
'live-tile',
|
||
|
|
||
|
'progressbar',
|
||
|
'rating',
|
||
|
'slider',
|
||
|
'tab-control',
|
||
|
'table',
|
||
|
'times',
|
||
|
'dialog',
|
||
|
'notify',
|
||
|
'listview',
|
||
|
'treeview',
|
||
|
'fluentmenu',
|
||
|
'hint',
|
||
|
'streamer',
|
||
|
'stepper',
|
||
|
'drag-tile',
|
||
|
'scroll',
|
||
|
'pull',
|
||
|
'wizard',
|
||
|
'panel',
|
||
|
'tile-transform',
|
||
|
|
||
|
'initiator'
|
||
|
|
||
|
|
||
|
];
|
||
|
|
||
|
$.each(plugins, function(i, plugin){
|
||
|
$("<script/>").attr('src', 'js/metro/metro-'+plugin+'.js').appendTo($('head'));
|
||
|
});
|