|
@@ -8,7 +8,16 @@
|
|
|
*
|
|
|
* NOTE: this file must be saved in UTF-8 encoding.
|
|
|
*/
|
|
|
-(function($) {
|
|
|
+(function (factory) {
|
|
|
+ 'use strict';
|
|
|
+ if (typeof define === 'function' && define.amd) {
|
|
|
+ define(['jquery'], factory);
|
|
|
+ } else if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
|
+ factory(require('jquery'));
|
|
|
+ } else {
|
|
|
+ factory(window.jQuery);
|
|
|
+ }
|
|
|
+}(function($) {
|
|
|
"use strict";
|
|
|
|
|
|
$.fn.fileinputLocales['da'] = {
|
|
@@ -112,4 +121,4 @@
|
|
|
close: 'Luk detaljeret visning'
|
|
|
}
|
|
|
};
|
|
|
-}));
|
|
|
+}));
|