diff --git a/css/glowingbear.css b/css/glowingbear.css
index 637ae1a..e400f81 100644
--- a/css/glowingbear.css
+++ b/css/glowingbear.css
@@ -304,3 +304,7 @@ li.notification {
height: 15px;
background: rgba(255,255,255,0.5);
}
+
+img.embed {
+ max-height: 300px;
+}
diff --git a/index.html b/index.html
index bb2d302..9d6bafb 100644
--- a/index.html
+++ b/index.html
@@ -178,7 +178,17 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel
+
+
+
+
+
diff --git a/js/plugins.js b/js/plugins.js
index ed2ffe0..33db097 100644
--- a/js/plugins.js
+++ b/js/plugins.js
@@ -53,16 +53,15 @@ plugins.service('plugins', ['userPlugins', '$sce', function(userPlugins, $sce) {
* Iterates through all the registered plugins
* and run their contentForMessage function.
*/
- var contentForMessage = function(message) {
+ var contentForMessage = function(message, visible) {
message.metadata = [];
for (var i = 0; i < plugins.length; i++) {
var nsfw = false;
- var visible = true;
if (message.text.match(nsfwRegexp)) {
var nsfw = true;
- var visible = false;
+ visible = false;
}
var pluginContent = plugins[i].contentForMessage(message.text);
@@ -227,7 +226,7 @@ plugins.factory('userPlugins', function() {
url = url.replace(/.*\//, "http://media.fukung.net/imgs/")
}
- content = '';
+ content = '';
}
}
diff --git a/js/websockets.js b/js/websockets.js
index 3478ce9..6f4aa1b 100644
--- a/js/websockets.js
+++ b/js/websockets.js
@@ -27,7 +27,7 @@ weechat.factory('handlers', ['$rootScope', 'models', 'plugins', function($rootSc
// Only react to line if its displayed
if(message.displayed) {
var buffer = models.getBuffer(message.buffer);
- message = plugins.PluginManager.contentForMessage(message);
+ message = plugins.PluginManager.contentForMessage(message, $rootScope.visible);
buffer.addLine(message);
if (buffer.active) {
@@ -513,6 +513,14 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$store.bind($scope, "hotlistsync", true);
// Save setting for displaying nicklist
$store.bind($scope, "nonicklist", false);
+ // Save setting for displaying embeds
+ $store.bind($scope, "noembed", false);
+ // Save setting for displaying embeds in rootscope so it can be used from service
+ $rootScope.visible = $scope.noembed == false;
+ // Watch model and update show setting when it changes
+ $scope.$watch('noembed', function() {
+ $rootScope.visible = $scope.noembed == false;
+ });
$scope.setActiveBuffer = function(key) {
models.setActiveBuffer(key);