Skip to content

Instantly share code, notes, and snippets.

@postadelmaga
postadelmaga / Rambox_Jira.js
Last active September 17, 2017 12:42
Rambox - JIRA Software service
function removeElement(el) {
if (el) {
el.remove();
}
}
function removeElementById(id, parent = false) {
var el = document.getElementById(id);
if (el && parent) {
el = el.parentElement;
<?php
final class Present
{
protected $_is;
static protected $_now;
static protected $_time;
public function __construct()
{
self::$_now = $this;