Jump to content

diogo

Moderators
  • Posts

    4,314
  • Joined

  • Last visited

  • Days Won

    80

Everything posted by diogo

  1. Thanks for the links Alan. Just one correction. Sublime Text is not from Will Bond, he "only" made some packages for it. The developer of ST is a guy called Jon Skinner.
  2. Nico, you designed such a nice theme only some weeks ago... but yep, it looks great
  3. Is anyone else noticing something wrong with these two statements?
  4. diogo

    Max, Cafe, Bar,

    Thanks a lot "Alex"
  5. That's what happens when you start giving away clues...
  6. diogo

    Max, Cafe, Bar,

    Stephan, just answered to your PM.
  7. Don't invite Pete. He'll put milk on it!!
  8. Just tried it on compliance and it works. Maybe there was an error while copying the files to the server and this would be solved by downloading again.
  9. tooltip() is a method from jQuery UI. There would be the possibility that it wasn't included on PWs UI download, but I just tested it on the console on the default theme and, and it was recognized...
  10. I wasn't yet born to webdesign when your friend froze in time....
  11. One way is to put all the PHPGoogleMaps folder inside the templates folder and load the library like this require( 'PHPGoogleMaps/Core/Autoloader.php' ); If you want more flexibility you can do this require( $config->paths->templates . 'PHPGoogleMaps/Core/Autoloader.php' );
  12. I see you changed tactics Pete. Since you can't be faster, you will at least be more detailed
  13. Ah! You will have to explain that one to Joss and Mathew
  14. You can also use my image tags module http://modules.processwire.com/modules/textformatter-image-tags/
  15. I prefer to have to continue having to edit the post everytime to fix the code then changing from chrome to another browser
  16. the span was a present from the forum editor, I don't have anything to do with it. The a was my mistake when I copied the code... I will edit it
  17. I'm sorry Joss, I meant $('.PageListActionEdit a').html(' <i class="icon-edit"></i>Edit ');
  18. Hi again joss try this: $('.PageListActionEdit a').text(' <i class="icon-edit"></i> ');
  19. That's strange... I changed my language to Portuguese and did the same test and everything is normal, there's no extra js file being loaded. Well, glad you solved it
  20. The default body field should work immediately after install, yes. Can you have a look at the browser console on the edit page of a page that has this field and see if you get any error?
  21. The "body" field that comes with the default install works?
  22. One day we will port the "Wire" template language to javascript
  23. Not an expert on this, but if what you want is to refresh the page in the browser (is it?) the indicated would be javascript. Maybe something like this would work (very rough and written in the browser... just to illustrate a point) // checks every hour if the hour of the day is 0, and if so, reloads the page setTimeout(function(){ var d = new Date(); if( d.getHours() == 0 ){ window.location.reload(); }; }, 3600000);
  24. That event would be .ajaxComplete(). Joss, try this: $(document).ajaxComplete(function() { $('.PageListActions').addClass('test'); });
×
×
  • Create New...