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
Hooks.Tabulator = { | |
mounted() { | |
let me = this; | |
let selectable = 1; | |
if (this.el.dataset.selectable) { | |
selectable = JSON.parse(this.el.dataset.selectable); | |
} | |
let table = new Tabulator(this.el, { | |
columns: JSON.parse(this.el.dataset.columns), | |
selectable: selectable, |
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
// | |
// ssrlib.cc (Server Side Rendering library) | |
// | |
// Copyright (c) 2022 InformeMedico.com.ar | |
// | |
// | |
#include <erl_nif.h> | |
#include <png.h> | |
#include <vector> |
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
/* | |
Small ng-admin config showing how to inject a Login controller when | |
a 401 error is returned by the server. | |
*/ | |
(function () { | |
"use strict"; | |
var app = angular.module('myApp', [ |