Merge pull request #76 from torhve/master

PR
This commit is contained in:
David Cormier 2013-10-28 06:01:09 -07:00
commit 4a4d156b99
4 changed files with 27 additions and 6 deletions

View File

@ -304,3 +304,7 @@ li.notification {
height: 15px;
background: rgba(255,255,255,0.5);
}
img.embed {
max-height: 300px;
}

View File

@ -183,6 +183,16 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel
</div>
</form>
</li>
<li class="">
<form class="form-inline" role="form">
<div class="checkbox">
<label>
<input type="checkbox" ng-model="noembed">
Hide embedded content by default
</label>
</div>
</form>
</li>
<li class="">
<form class="form-inline" role="form">
<div class="checkbox">

View File

@ -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 = '<a target="_blank" href="'+url+'"><img src="' + url + '" height="300"></a>';
content = '<a target="_blank" href="'+url+'"><img class="embed" src="' + url + '"></a>';
}
}

View File

@ -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);