| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/components/com_community/assets/vendors/ |
Upload File : |
/**
* store.js
* Copyright (c) 2010-2017 Marcus Westin
* @license MIT https://github.com/marcuswestin/store.js/blob/master/LICENSE
*/
import localStorage from 'store';
import localStorageEventsPlugin from 'store/plugins/events';
/**
* moment
* Copyright (c) JS Foundation and other contributors
* @license MIT https://github.com/moment/moment/blob/develop/LICENSE
*/
import moment from 'moment';
/**
* vue
* (c) opyright (c) 2013-present, Yuxi (Evan) You
* @license MIT https://github.com/vuejs/vue/blob/dev/LICENSE
*/
import Vue from 'vue';
/**
* vuex v3.0.1
* (c) 2017 Evan You
* @license MIT https://github.com/vuejs/vue/blob/dev/LICENSE
*/
import Vuex from 'vuex';
/**
* autosize
* Copyright (c) 2015 Jack Moore
* @license MIT https://github.com/jackmoore/autosize/blob/master/LICENSE.md
*/
import autosize_textarea from 'autosize';
(function( root, $, factory ) {
root.joms = root.joms || {};
root.joms = $.extend( root.joms, factory( root ) );
})( window, jQuery, function( root ) {
let map = Array.prototype.map,
langDate;
// Configuration for store.js
localStorage.addPlugin( localStorageEventsPlugin );
// Configuration for moment.js
langDate = root.joms_lang.date || {};
moment.defineLocale( 'jomsocial', {
parentLocale: 'en',
months: langDate.months,
monthsShort: map.call( langDate.months, function( s ) { return s.substr( 0, 3 ) }),
weekdays: langDate.days,
weekdaysShort: map.call( langDate.days, function( s ) { return s.substr( 0, 3 ) }),
weekdaysMin: map.call( langDate.days, function( s ) { return s.substr( 0, 2 ) })
})
// Configuration for Vue.js
Vue.use( Vuex );
return {
localStorage, /* deprecated -> */ storage: localStorage,
moment,
Vue,
Vuex,
autosize_textarea
};
});