Skip to content

Releases: arguiot/DisplayJS

The $.repeat() update

11 Dec 07:58
Compare
Choose a tag to compare

This update is a huge improvement to the $.repeat() function. This is partly because of the issue #45 .

See the docs for all the changes in this function.

😲 New cool feature! $.getProp()

22 Nov 12:08
Compare
Choose a tag to compare

Here is a new feature: $.getProp(), you'll see everything about it in the docs

Hope you'll like this feature 😊

The $.predict update

13 Nov 10:12
Compare
Choose a tag to compare

This is a very very small update that will enhance your experience with $.predict()

The modern update 🎉

21 Oct 08:58
Compare
Choose a tag to compare

This release is now fully written in ES6, display.es6.js and display.es6.min.js have been renamed display.js and display.min.js. It's a very small release.

The Object update

01 Oct 10:06
Compare
Choose a tag to compare

This is a minor update, I added the possibility to use $.css() like:

$.css(".testElement", {
   "background": "red",
   "color": "blue"
});

And, $.var() like:

<p var="person.name"></p>
<p var="person.address.city"></p>
// Create a var for Display.JS. You don't have to add the $ var, you can change the name.
var $ = new DisplayJS(window);
// Create an object 'person' who's name is 'Kevin', and he lives in New York.
var person = {name: 'Kevin', address: {city:'New-York'}};
// Rendering the DOM
$.var();

Fix 🛠! Again! 😏

25 Sep 22:50
Compare
Choose a tag to compare

As DisplayJS grew, the amount of issue increased. And so, here is my fix for all of them!

Fix 🛠

15 Sep 12:29
Compare
Choose a tag to compare

Thanks to @Cslove that helped to fix $.s()

🎉 v2.0.0 is here 🤗

09 Sep 15:13
Compare
Choose a tag to compare

This version is a very big update. There is new functions ($.copy(), $.then(), $.get(), ...), but more important, there is now light versions of DisplayJS if you don't need all the math / heavy functions.

I hope you'll love this update 😊.

😉 Bug Fixing... 🛠

10 Aug 11:56
Compare
Choose a tag to compare

I fixed $.time_ago() function and I'm now supporting multiple module exportation:

  • AMD
  • Node.JS (As before)
  • ES6

Thank you for using DisplayJS 😊.

😭 There were still bugs... 🛠

06 Aug 16:27
Compare
Choose a tag to compare

I'm sorry for leaving some bugs in the v1.2.1.

These bugs that I was supposed to fix are now fixed, and again, I'm sorry 😉