1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-09 06:37:01 +02:00

HubSpot Messaging Library #195

This commit is contained in:
Awilum
2014-01-07 20:39:06 +02:00
parent 1fd4892969
commit 88b244a6df
2 changed files with 19 additions and 20 deletions

View File

@@ -39,12 +39,7 @@
loadingImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/loading.gif", loadingImg : "<?php echo Option::get('siteurl'); ?>/public/assets/img/chocolat/loading.gif",
}); });
}); });
/* Messanger */
Messenger.options = {
extraClasses: 'messenger-fixed messenger-on-bottom messenger-on-right',
theme: 'flat'
}
</script> </script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->

View File

@@ -1,19 +1,23 @@
/** /**
* Monstra JS module * Monstra JS module
* @package Monstra *
* @author Romanenko Sergey / Awilum * This source file is part of the Monstra Engine. More information,
* @copyright 2012 Romanenko Sergey / Awilum * documentation and tutorials can be found at http://monstra.org
* @version $Id$ *
* @since 1.0.0 * @package Monstra
* @license http://opensource.org/licenses/gpl-license.php GNU Public License *
* Monstra is free software. This version may have been modified pursuant * @author Romanenko Sergey / Awilum <awilum@msn.com>
* to the GNU General Public License, and as distributed it includes or * @copyright 2012-2014 Romanenko Sergey / Awilum <awilum@msn.com>
* is derivative of works licensed under the GNU General Public License or *
* other free or open source software licenses. * For the full copyright and license information, please view the LICENSE
* See COPYING.txt for copyright notices and details. * file that was distributed with this source code.
* @filesource
*/ */
/* Confirm delete */ /* Confirm delete */
function confirmDelete(msg){var data=confirm(msg+" ?"); return data;} function confirmDelete(msg){var data=confirm(msg+" ?"); return data;}
/* Messanger */
Messenger.options = {
extraClasses: 'messenger-fixed messenger-on-bottom messenger-on-right',
theme: 'flat'
}