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
.socialcount .button { | |
display: block; | |
width: 100%; | |
position: absolute; | |
left: 0; | |
bottom: -6px; | |
text-align: center; | |
pointer-events: none; | |
} |
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
Uncaught TypeError: Object #<HTMLDivElement> has no method 'run' | |
(anonymous function) | |
o index.php:3 | |
p.add index.php:3 | |
e.fn.e.ready index.php:3 | |
e.fn.e.init index.php:3 | |
e index.php:3 | |
(anonymous function) | |
(anonymous function) index.php:3 | |
e.extend.globalEval index.php:3 |
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
Uncaught ReferenceError: $K is not defined index.php:1704 | |
UserCountryMap.run index.php:1704 | |
(anonymous function) | |
o index.php:3 | |
p.add index.php:3 | |
e.fn.e.ready index.php:3 | |
e.fn.e.init index.php:3 | |
e index.php:3 | |
(anonymous function) | |
(anonymous function) index.php:3 |
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
function countWordsInWpEditor() { | |
var html; | |
var text; | |
var words; | |
var focusedTextField = document.getElementById("tinymce"); | |
html = focusedTextField.innerHTML; | |
text = html.replace(/(<([^>]+)>)/ig,"") | |
words = text.split(" "); |
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
function get_formatted_date(date_string) { | |
const raw = new Date(date_string); | |
const day = ("0" + raw.getDate()).slice(-2); | |
const month = ("0" + (raw.getMonth() + 1)).slice(-2); | |
const year = raw.getFullYear().toString().slice(-2); | |
return month + '/' + day + '/' + year; | |
} |
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
function get_formatted_time(time_string) { | |
const raw = new Date(time_string); | |
const hour = raw.getHours(); | |
const minute = ("0" + raw.getMinutes()).slice(-2); | |
const meridian = (hour < 13 ) ? 'AM' : 'PM'; | |
return hour + ':' + minute + ' ' + meridian; | |
} |
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
{"lastUpload":"2018-07-12T14:20:17.148Z","extensionVersion":"v2.9.2"} |
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
export default class DataEvent { | |
constructor(type, payload, uuid) { | |
return { | |
uuid: uuid, | |
type: type, | |
payload: payload, | |
meta: { | |
version: { | |
series: "SERVICE", | |
number: 1 |