rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mole

Pages: 1
1
Everything else / Re: small favor
« on: January 29, 2015, 11:26:12 PM »
Quote from: rejetto
no one willing to translate 8 lines?
My native lang is Russian, and i can translate it without Google:

Code: [Select]
Приветствую!
Я Rejetto, музыкант из группы Misty Morning.
Мы рады, что люди интересуются нашей музыкой - это очень важно для нас.
На выпуск этого и других альбомов мы тратим все деньги, которые у нас есть.
Каждый альбом обходится нам в тысячи "евро", ведь хороший звук стоит недешево.
Поэтому нам приходится тратить больше, чем мы зарабатываем.
Мы не зарабатываем музыкой на жизнь, поэтому просим вас помочь нам оплатить эти расходы.
Если вам нравится наша музыка - пожалуйста поддержите нас. Как? Просто покупайте нашу музыку, а если у вас есть другие возможности помочь нам - дайте нам знать.

thx for HFS and R&Q.

2
HTML & templates / Re: File upload with drag and drop
« on: January 28, 2015, 10:41:20 PM »
find:
Code: [Select]
xhr.onreadystatechange = function() {
                if (xhr.readyState == 4 && xhr.status == 200) {
                    //alert(file.name+" ok"); // handle response.  //xhr.responseText
                    var txt = document.createElement("div");
                    txt.innerHTML = "<a href='"+file.name+"'>"+file.name+"</a> ok "+file.size/1000+"kB"
                    document.querySelector('body').appendChild(txt);
                   
                }
            };
replace with:
Code: [Select]
      xhr.onreadystatechange = function() {
            if (xhr.readyState == 4 && xhr.status == 200) {
                //alert(file.name+" ok"); // handle response.  //xhr.responseText
                var txt = document.createElement("tr");
                txt.innerHTML = "<td><a href='" + file.name + "'>" + file.name + "</a></td><td>" + Math.ceil((file.size / 1000) * 100) / 100 + " KB</td><td> OK </td>"
                document.querySelector('tbody').appendChild(txt);

            }
        };
result:

Pages: 1