@ -135,7 +135,7 @@
"@commitlint/cli": "8.0.0",
"@commitlint/config-angular": "8.0.0",
"coveralls": "3.0.4",
"eslint": "5.16.0",
"eslint": "6.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.3",
"grunt": "1.0.4",
@ -1,7 +1,7 @@
'use strict';
var ajaxify = window.ajaxify || {};
ajaxify = window.ajaxify || {};
$(document).ready(function () {
var location = document.location || window.location;
var app = window.app || {};
app = window.app || {};
app.isFocused = true;
app.currentRoom = null;
@ -1,7 +1,5 @@
/* globals define */
define('forum/flags/detail', ['forum/flags/list', 'components', 'translator', 'benchpress'], function (FlagsList, components, translator, Benchpress) {
var Flags = {};
define('forum/flags/list', ['components', 'Chart'], function (components, Chart) {
@ -7,6 +7,8 @@ define('forum/recent', ['topicList'], function (topicList) {
app.enterRoom('recent_topics');
topicList.init('recent');
$('#new_topic').removeAttr('data-toggle');
$('#new_topic span.caret').remove();
};
return Recent;
var overrides = window.overrides || {};
overrides = window.overrides || {};
if (typeof window !== 'undefined') {
(function ($) {
@ -1,8 +1,8 @@
var socket;
socket = window.socket;
app.isConnected = false;
(function () {
@ -1,8 +1,5 @@
/* global require, after, before */
var async = require('async');
var assert = require('assert');
/* globals require, before, after, describe, it */