Skip to content
Snippets Groups Projects
Commit 78e7617c authored by Dewita Sonya Tarabunga's avatar Dewita Sonya Tarabunga
Browse files

fix bug on css and js

parent cae74f27
Branches
1 merge request!2Message System
......@@ -3,8 +3,29 @@ namespace Magento\Messaging\Block;
class Messaging extends \Magento\Framework\View\Element\Template
{
public function getText()
{
/**
* @var \Magento\Framework\App\ObjectManager
*/
public $om;
/**
* @var \Magento\Customer\Model\Session
*/
public $session;
public function getText() {
return 'Hello world!';
}
public function getId() {
if ($om === null || $session === null) {
$om = \Magento\Framework\App\ObjectManager::getInstance();
$session = $om->get('\Magento\Customer\Model\Session');
}
if ($session->isLoggedIn()) {
return $session->getCustomer()->getId();
} else {
return -1;
}
}
}
\ No newline at end of file
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd" layout="1column">
<head>
<title>Messaging</title>
<css src="Messaging::css/chat.css" />
<script src="Messaging::js/chat.js" />
<script src="Messaging::js/angular.js" />
<script src="Messaging::js/jquery.js" />
<css src="Magento_Messaging::css/chat.css" />
<script src="Magento_Messaging::js/chat.js" />
<script src="Magento_Messaging::js/angular.js" />
<script src="Magento_Messaging::js/jquery.js" />
</head>
<body ng-app="chatlistbox" ng-controller="controller">
<referenceContainer name="content">
......
var config = {
map: {
'*': {
messaging: 'Magento_Messaging/js/test',
}
}
};
\ No newline at end of file
......@@ -17,4 +17,12 @@
</div>
</div>
</div>
</div>
\ No newline at end of file
</div>
<script type="text/javascript">
require(['jquery'],function($){
$(document).ready(function() {
alert('hai');
});
});
</script>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment