This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a v-if="networks.length>0" class="u-link kiwi-personal-existing-networks" @click.stop="toggleStateBrowser">{{ $t('personal_saved') }}</a> | |
<a | |
v-if="networks.length>0" | |
class="u-link kiwi-personal-existing-networks" | |
@click.stop="toggleStateBrowser">{{ $t('personal_saved') }} | |
</a> | |
<a | |
v-if="networks.length>0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/work/personal/kiwiirc/src/components/App.vue | |
40:1 error Line 40 exceeds the maximum line length of 100 max-len | |
44:19 error 'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive vue/valid-v-else | |
/work/personal/kiwiirc/src/components/AppSettings.vue | |
18:1 error Line 18 exceeds the maximum line length of 100 max-len | |
20:1 error Line 20 exceeds the maximum line length of 100 max-len | |
20:37 error Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key | |
45:1 error Line 45 exceeds the maximum line length of 100 max-len |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import znc | |
VERSION = '2' | |
COMMAND = "BOUNCER" | |
class bouncer(znc.Module): | |
module_types = [znc.CModInfo.GlobalModule] | |
description = "Provides KiwiIRC BOUNCER support" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: red; | |
color: blacker; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- THE ERROR | |
Switching from `isServer()` to `isChannel()` (template line 30 and 17) | |
DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. | |
div.kiwi-header-options on line 31 fails to be removed. | |
--> | |
<template> | |
<div |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Irc = require('irc-framework'); | |
/** | |
* Example middleware structure to handle NickServ authentication | |
* Accepts a `services` object from the client connect() options | |
*/ | |
function ServiceX() { | |
return function(client, raw_events, parsed_events) { | |
raw_events.use(rawEventHandler); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IrcConnection.prototype.end = function (data) { | |
var that = this; | |
if (!this.socket) { | |
return; | |
} | |
this.requested_disconnect = true; | |
if (data && this.connected) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monitorPanelFallback: function() { | |
var panel_access = []; | |
this.model.on('active', function() {}) | |
this.model.on('remove', function() {}) | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_kiwi.view.Channel = _kiwi.view.Panel.extend({ | |
events: function(){ | |
var parent_events = this.constructor.__super__.events; | |
if(_.isFunction(parent_events)){ | |
parent_events = parent_events(); | |
} | |
return _.extend({}, parent_events, { | |
'click .msg .nick' : 'nickClick', | |
"click .chan": "chanClick", |