Skip to content

Instantly share code, notes, and snippets.

@KOVIKO
KOVIKO / DailyGrind.lua
Created February 20, 2021 20:19
Fix for WoW Addon "Daily Grind" v3.0.7
-- Author : Deldinor of Elune
-- Create Date : 2/1/2011 7:31:49 AM
addonName = "DailyGrind";
addonFullName = "Daily Grind";
dgDebugText = "DEBUG";
debugModeEnabled = false;
disableTurnIn = false;
@KOVIKO
KOVIKO / ArkInventory.lua
Last active March 14, 2019 05:40
8.1.5 ItemButton changes for ArkInventory `r818-alpha`
--[[
License: All Rights Reserved, (c) 2006-2018
$Revision: 2319 $
$Date: 2019-03-03 22:42:48 +1100 (Sun, 03 Mar 2019) $
]]--
local _G = _G
@KOVIKO
KOVIKO / ArkInventory.lua
Last active March 15, 2019 15:48
8.1.5 ItemButton changes for ArkInventory `r812`
--[[
License: All Rights Reserved, (c) 2006-2018
$Revision: 2304 $
$Date: 2019-01-23 21:21:31 +1100 (Wed, 23 Jan 2019) $
]]--
local _G = _G
(function ($) {
"use strict";
function buildTemplate(data) { // Build the template (you should use a microtemplating engine)
return "<div>" + data.toString() + "</div>";
}
var Feed = function (url) {
this.events = {};
this.url = url;