Skip to content

General

General

Categories

174 results found

  1. In github, there is a ``` convention that allows you to choose the highlighting language for your code blocks. It does not work in the forge, it would be awesome if it did !

    Explained here :
    http://jackhq.tumblr.com/post/4777544850/github-enables-syntax-color-to-your-project-readme

    2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. First off, this is kind of a pain:

    myForm.set('send', {url: 'contact.php', method: 'get'});
    myForm.send(); //Sends the form.

    When in earlier versions of mootools you could just do myform.send({url:'/', method:'get'});

    Also, there's no way to specify a form to use Request.JSON which would be super helpful. Maybe make form.send take a Request object

    myform.send(new Request.JSON({ ... });

    Frankly, the docs on this are very hard to find (who would know to look under the Request object for form submission?) and the form search is useless for this case. It would be great if you showed how to add events as an…

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. There are two singleton patterns posted up and while I can see which is more recent, I can't tell by how much. It would be cool if you could pull in and cache a "last updated" date from the Github API.

    The reason I say cache is because one of the two singleton's appears to have been removed. Another good thing to add would be a job system that checks the integrity of the links—if something 404's after several weeks, it should be removed from Forge.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. //example
    var B = new Class({
    Implements:{name:'han'} // before 1.3 is OK, 1.3 is bad
    });

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. I have translated FileManager to Lithuanian language: http://www.visaita.lt/file_manager/Language.lt.js
    Link will be available for several weeks.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. When I update my plugin Element.removeTag, it picks up the latest tag and uses the right commit, but doesn't update the current version number.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. // example start
    var A=new Class({
    initialize: function(){
    alert('A');
    }
    });

    var B = new Class({
    Implements: A
    });// example end

    execute the example SYS say 'A';

    before mt1.2.XX is not so, he will cover pars'method but not invok.

    is this a bug or it is sure so?

    thanks!!!

    2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. Hi,

    The Mousewheel-Event on this page : http://demos.mootools.net/CustomEvents doesn't work with FF 3.6.12 (ok with Chrome 7.0.517.44).
    Please help us ;p

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. After changing my twitter username I can no longer login with twitter to update / edit my plugins (@mdnelson30 => @mikeonrails)

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. When I try to update to the new version of http://mootools.net/forge/p/formwizard the procedure stops with the error

    /package.yml not found in repository root.

    Obviously the file is in place and you can reach it clicking on the link embedded into the error message.

    0 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. reviewing such libraries as jQuery and protovis I found out that they contain several useful tricks.

    Array.prototype.each = function (fn, bind) {
    var ret;
    for (var i=0, n=this.length; i<n && ret !== false; i++) {
    // Test for existance: i in this
    // because if a user calls delete(array[index]) index is still in range
    // but array[index] becomes undefined => we need to test
    if (i in this) {
    // if function returns false, break the iteration
    ret = fn.call(bind, this[i], i, this);
    }
    }
    };

    6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. Profile picture not changed on mootools website where it changed in twitter

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. Large modular projects have dependencies displayed kinda weirdly - a really really long list of stuff that can be shorter. Can we make it show 15 items max by default and others through a "Show more" link?

    Example: http://mootools.net/forge/p/lsd

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Maybe it can be an extra optional line in package.yml.
    This would help people opening the Forge to understand what the Classes are about (name isn't always helpful)

    2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. There is no reason that compressed JS files should be bloated with the extra headers currently required, when the original non-compressed files already have those headers.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. 2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. Here at Outdoor-Bar-Stools.com you can find the perfect outdoor bar stools for your backyard in many styles including wicker bar stools and metal bar stools. You can also find tons of outdoor bar tables as well.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. Here at Nylon-Panties.com you will find the perfect nylon panties for your underwear wardrobe including nylon bikini panties to nylon thong panties. Look sexy while still being comfortable. Get what you need here.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?