• Forum
  • Doc
  • Screenshots
  • Download
  • Donate
  • Contributors
  • Contact
  • Follow @phpfreechat
  • DEMO
  • Board index ‹ Version 1.x branch ‹ Contributions (v1.x)
  • Change font size
  • FAQ
  • Register
  • Login

Real-time bold,italic and underline changes

Post a bug fix, a new feature, a theme ...

Moderators: OldWolf, re*s.t.a.r.s.*2

Post a reply
14 posts • Page 1 of 1

Postby spoonfed » Wed Jul 18, 2007 1:10 pm

I found it a bit weird that the chats color change was real-time but if you wanted bold, italic or underlined text you had to use a prompt so i added a few functions to get it the way i wanted.

Now i'm not very good at javascript, so if someone finds this useful and wants to do it in a better way i'll be happy to use your code instead of mine but it seems to work for me atm. :)

Simply put it makes a cookie whenever someone presses B,I or U, and when sending the message it checks for that cookie and adds the appropriate BBCode to the message, it was the easiest way to do this i could think of.


First of all i put this code in pfcclient.js after the switch_text_color function
Code: Select all
  makeBold: function()
  {
     this.font_weight = 'bold';
    fcookie = getCookie('pfc_font_weight');
    if (fcookie == 'bold')
    {
       this.font_weight = 'normal';
    }
    this.el_words.style.fontWeight = this.font_weight;
    this.el_words.focus();
    setCookie('pfc_font_weight', this.font_weight);
  },
 
  makeItalic: function()
  {
     this.font_style = 'italic';
    fcookie = getCookie('pfc_font_style');
    if (fcookie == 'italic')
    {
       this.font_style = 'normal';
    }     
    this.el_words.style.fontStyle = this.font_style;
    this.el_words.focus();
    setCookie('pfc_font_style', this.font_style);
  },
 
  makeUnderline: function()
  {
     this.font_decoration = 'underline';
    fcookie = getCookie('pfc_font_decoration');
    if (fcookie == 'underline')
    {
       this.font_decoration = 'none';       
    }
    this.el_words.style.textDecoration = this.font_decoration;
    this.el_words.focus();
    setCookie('pfc_font_decoration', this.font_decoration);
  },

Second i put this code at line 543 (still in pfcclient.js) after the part that colorizes the text

Code: Select all
      // make the text bold if a cookie is set
      fcookie = getCookie('pfc_font_weight');
      if (fcookie == 'bold')
      {
       var wval = '[b]' + wval + '[/b]';
      }
     
      // make the text italic if a cookie is set
      fcookie = getCookie('pfc_font_style');
      if (fcookie == 'italic')
      {
       var wval = '[i]' + wval + '[/i]';
      }
     
      // make the text underlined if a cookie is set
      fcookie = getCookie('pfc_font_decoration');
      if (fcookie == 'underline')
      {
       var wval = '[u]' + wval + '[/u]';
      }

And third of course i changed the onclick actions on the actual buttons, you can find these around line 100 in themes/default/chat.html.tpl.php

Code: Select all
    <div id="pfc_bbcode_container">
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_strong.gif'); ?>"
             alt="<?php echo _pfc("Bold"); ?>"
             title="<?php echo _pfc("Bold"); ?>"
             class="pfc_bt_strong"
             onclick="pfc.makeBold()" />
      </div>
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_em.gif'); ?>"
             alt="<?php echo _pfc("Italics"); ?>"
             title="<?php echo _pfc("Italics"); ?>"
             class="pfc_bt_strong"
             onclick="pfc.makeItalic()" />
      </div>
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_ins.gif'); ?>"
             alt="<?php echo _pfc("Underline"); ?>"
             title="<?php echo _pfc("Underline"); ?>"
             class="pfc_bt_strong"
             onclick="pfc.makeUnderline()" />
      </div>
spoonfed
Member
 
Posts: 10
Joined: Wed Jul 18, 2007 12:56 pm
Top

Postby spoonfed » Thu Jan 31, 2008 4:51 pm

Update: just upgraded to final version and did these changes again.

Demo here http://www.bokcirklar.se/demo_chat.php

few changes since last time, button images now change when activated (using own images and absolute links so dont just paste the code in :) ).
Added a check so it doesnt add the styles when sending an empty string.
Color list is shown by default (and put visibility: hidden on all buttons except bold, italic and underline.

data/public/js/pfcclient.js (line 580 after the colorize the text part)
Code: Select all
   // make the text bold if a cookie is set
      fcookie = getCookie('pfc_font_weight');
      if (fcookie == 'bold')
      {
         if (wval != '') {
           var wval = '[b]' + wval + '[/b]';
         }
      }
     
      // make the text italic if a cookie is set
      fcookie = getCookie('pfc_font_style');
      if (fcookie == 'italic')
      {
         if (wval != '') {
           var wval = '[i]' + wval + '[/i]';
         }
      }
     
      // make the text underlined if a cookie is set
      fcookie = getCookie('pfc_font_decoration');
      if (fcookie == 'underline')
      {
         if (wval != '') {
             var wval = '[u]' + wval + '[/u]';
         }
      }

data/public/js/pfcclient.js (after end of switch_text_color function (line 1900-ish)
Code: Select all
  makeBold: function()
  {
     this.font_weight = 'bold';
    fcookie = getCookie('pfc_font_weight');
    if (fcookie == 'bold')
    {
       this.font_weight = 'normal';
       var bt_strong_button = document.getElementById('bt_strong_button');
        bt_strong_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong.gif';
    } else
    {
       var bt_strong_button = document.getElementById('bt_strong_button');
        bt_strong_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong_on.gif';       
    }
    this.el_words.style.fontWeight = this.font_weight;
    this.el_words.focus();
    setCookie('pfc_font_weight', this.font_weight);
  },
 
  makeItalic: function()
  {
     this.font_style = 'italic';
    fcookie = getCookie('pfc_font_style');
    if (fcookie == 'italic')
    {
       this.font_style = 'normal';
       var bt_em_button = document.getElementById('bt_em_button');
        bt_em_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em.gif';
    } else
    {
       var bt_em_button = document.getElementById('bt_em_button');
        bt_em_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em_on.gif';       
    }
    this.el_words.style.fontStyle = this.font_style;
    this.el_words.focus();
    setCookie('pfc_font_style', this.font_style);
  },
 
  makeUnderline: function()
  {
     this.font_decoration = 'underline';
    fcookie = getCookie('pfc_font_decoration');
    if (fcookie == 'underline')
    {
       this.font_decoration = 'none';
       var bt_ins_button = document.getElementById('bt_ins_button');
        bt_ins_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins.gif';      
    } else
    {
       var bt_ins_button = document.getElementById('bt_ins_button');
       bt_ins_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins_on.gif';
    }
    this.el_words.style.textDecoration = this.font_decoration;
    this.el_words.focus();
    setCookie('pfc_font_decoration', this.font_decoration);
  },

themes/default/chat.html.tpl.php (line 100-ish, replace everything after <div id="pfc_bbcode_container"> and before <div id="pfc_errors"></div> with this)
Code: Select all
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_strong.gif'); ?>"
             alt="<?php echo _pfc("Bold"); ?>"
             title="<?php echo _pfc("Bold"); ?>"
             class="pfc_bt_strong"
             id="bt_strong_button"
             onclick="pfc.makeBold()" />
      </div>
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_em.gif'); ?>"
             alt="<?php echo _pfc("Italics"); ?>"
             title="<?php echo _pfc("Italics"); ?>"
             class="pfc_bt_strong"
             id="bt_em_button"
             onclick="pfc.makeItalic()" />
      </div>
      <div class="pfc_btn">
     
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_ins.gif'); ?>"
             alt="<?php echo _pfc("Underline"); ?>"
             title="<?php echo _pfc("Underline"); ?>"
             class="pfc_bt_strong"
             id="bt_ins_button"
             onclick="pfc.makeUnderline()" />
      </div>
     
      <div id="pfc_colorlist"></div>
      <div class="pfc_btn" style="visibility: hidden;">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_color.gif'); ?>"
             alt="<?php echo _pfc("Color"); ?>"
             title="<?php echo _pfc("Color"); ?>"
             id="pfc_bt_color"
             onclick="pfc.minimize_maximize('pfc_colorlist','inline')" onload="updateElements();" />
      </div>
    </div> <!-- pfc_bbcode_container -->
   
    <div class="pfc_btn" style="visibility: hidden;">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_mail.gif'); ?>"
             alt="<?php echo _pfc("Mail"); ?>"
             title="<?php echo _pfc("Mail"); ?>"
             class="pfc_bt_strong"
             onclick="pfc.insert_text('[email]','[/email]',true)" />
    </div>
  </div>

IF you're wondering about the updateElements() part i made a little function to change the button images and the text field style according to the set cookies when the chat is loaded.
Loading it with an onload on an image element is probably not the best way to do it but as long as it works right? ;)

themes/default/chat.js.tpl.php (put this anywhere)
Code: Select all
  function updateElements()
  {
     var pfc_words = document.getElementById('pfc_words');
     var bold_button = document.getElementById('bt_strong_button');
     var bold_cookie = getCookie('pfc_font_weight');
     if (bold_cookie == 'bold') {
        bold_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong_on.gif';
        pfc_words.style.fontWeight = 'bold';
     }
     var italic_button = document.getElementById('bt_em_button');
     var italic_cookie = getCookie('pfc_font_style');
     if (italic_cookie == 'italic') {
        italic_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em_on.gif';
        pfc_words.style.fontStyle = 'italic';      
     }
      var underline_button = document.getElementById('bt_ins_button');
     var underline_cookie = getCookie('pfc_font_decoration');
     if (underline_cookie == 'underline') {
        underline_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins_on.gif';
        pfc_words.style.textDecoration = 'underline';       
     }
  }
spoonfed
Member
 
Posts: 10
Joined: Wed Jul 18, 2007 12:56 pm
Top

Postby lestat_13_07 » Mon Feb 11, 2008 5:16 am

wow! great job!

i have seen your demo but i dont understand your coding.. (im a noob in javasript.. sorry T_T)

can you just give me the revised files you have made, so that i can try it too.. please

thank you so much..
lestat_13_07
New member
 
Posts: 3
Joined: Wed Jan 30, 2008 7:13 am
Top

Postby spoonfed » Wed Feb 13, 2008 1:52 pm

Sure, i can zip them up. What you'll need to do is upload the buttons to your selected themes image directory. (themes/default/images/ if you use the default theme)

http://www.zquid.info/phpfreechat.zip

bt_em.gif,bt_ins.gif,bt_strong.gif are included in the original pack, bt_em_on.gif, bt_ins_on.gif, bt_strong_on.gif you'll have to make yourself, they're the activated buttons so people see if they have bold on or not.

You can of course use mine if you want but theyre adapted for swedish so i have an 'F' for bold and 'K' for italics.
spoonfed
Member
 
Posts: 10
Joined: Wed Jul 18, 2007 12:56 pm
Top

Postby Mysterius » Thu May 22, 2008 11:02 am

I have tried this with the latest version of Phpfreechat but when this mod is installed, the chat stucks at the loading screen and do nothing.

It seems it is not compatible with the latest version. Could someone fix it? I am not able to do that.
Mysterius
New member
 
Posts: 2
Joined: Thu May 22, 2008 10:58 am
Top

Postby spoonfed » Thu May 22, 2008 12:09 pm

I wasnt aware there was a new version out but I can make update this within a week or so.

If someone else would like to do it feel free, I still dont write very pretty javascript code. :)
spoonfed
Member
 
Posts: 10
Joined: Wed Jul 18, 2007 12:56 pm
Top

Postby Mysterius » Fri May 23, 2008 10:30 am

Okay i finally got it to work (just some different lines to copy/paste), but still : the colors tab is not displayed.
I saw that you wrote "style="visibility: hidden;" for the color button and i actually don't understand why.

On your demo, the color tab is automatically displayed but even with everything working on my own tests, it is not.
And since you have hide the button, it can't be shown manually.

So i just deleted the "style="visibility: hidden;" part.

I will post some detailed installation instructions later for other people.
Mysterius
New member
 
Posts: 2
Joined: Thu May 22, 2008 10:58 am
Top

Postby Klubby » Thu Jul 03, 2008 6:24 pm

This is exactly what I was looking for... However, I do not have a file named pfcclient.js or the directory data/public/js/. I am using Ajax version: 0.8.1.2 phpBB3

Anywhere else this might be? Or if it is moved/renamed, is the code the same?

Thanks in advance.
Klubby
New member
 
Posts: 1
Joined: Thu Jul 03, 2008 6:19 pm
Top

Postby spoonfed » Mon Aug 04, 2008 7:18 am

Yeah, sorry Mysterious, i just did the install at version 1.2 and noticed the code for automatically loading the colorlist was missing (thats why i hide the colorlist button, on my setup i like to have bold, italic and underline plus just the colors to click on, of course thats optional)

Klubby, i don't know. If you have some sort of bundled installation maybe the phpfreechat files are in some common 'lib' directory, or if you have a really old version of phpfreechat it might be setup differently.

Good news is the old instructions still work fine for version 1.2 if you disregard the line numbers and search for my "after this" and "replace this with this" comments, its good news for me because i could never remember what i did from one update to another :)

Even so, here are some new instructions for version 2. (including an extra line of code in the last javascript function that opens the color list on chat load)


/data/public/js/pfcclient.js (add at line 607) after this part:
Code: Select all
      // Colorize the text with current_text_color.
      if (this.current_text_color != '' && wval.length != '')
        wval = '[color=#' + this.current_text_color + '] ' + wval + ' [/color]';

Insert this:
Code: Select all
    // make the text bold if a cookie is set
      fcookie = getCookie('pfc_font_weight');
      if (fcookie == 'bold')
      {
          if (wval != '') {
            var wval = '[b]' + wval + '[/b]';
          }
      }
     
      // make the text italic if a cookie is set
      fcookie = getCookie('pfc_font_style');
      if (fcookie == 'italic')
      {
          if (wval != '') {
            var wval = '[i]' + wval + '[/i]';
          }
      }
     
      // make the text underlined if a cookie is set
      fcookie = getCookie('pfc_font_decoration');
      if (fcookie == 'underline')
      {
          if (wval != '') {
               var wval = '[u]' + wval + '[/u]';
          }
      }

Same file /data/public/js/pfcclient.js (add at line 2023 (it will be 2023 after the previous paste) after this part:

Code: Select all
  switch_text_color: function(color)
  {
    /* clear any existing borders on the color buttons */
    var colorbtn = this.getElementsByClassName($('pfc_colorlist'), 'pfc_color', '');
    for(var i = 0; colorbtn.length > i; i++)
    {
      colorbtn[i].style.border = 'none';
      colorbtn[i].style.padding = '0';
    }

    /* assign the new border style to the selected button */
    this.current_text_color = color;
    setCookie('pfc_current_text_color', this.current_text_color);
    var idname = 'pfc_color_' + color;
    $(idname).style.border = '1px solid #555';
    $(idname).style.padding = '1px';

    // assigne the new color to the input text box
    this.el_words.style.color = '#'+color;
    this.el_words.focus();
  },

Insert this:

Code: Select all
makeBold: function()
  {
      this.font_weight = 'bold';
    fcookie = getCookie('pfc_font_weight');
    if (fcookie == 'bold')
    {
        this.font_weight = 'normal';
        var bt_strong_button = document.getElementById('bt_strong_button');
        bt_strong_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong.gif';
    } else
    {
        var bt_strong_button = document.getElementById('bt_strong_button');
        bt_strong_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong_on.gif';       
    }
    this.el_words.style.fontWeight = this.font_weight;
    this.el_words.focus();
    setCookie('pfc_font_weight', this.font_weight);
  },
 
  makeItalic: function()
  {
      this.font_style = 'italic';
    fcookie = getCookie('pfc_font_style');
    if (fcookie == 'italic')
    {
        this.font_style = 'normal';
        var bt_em_button = document.getElementById('bt_em_button');
        bt_em_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em.gif';
    } else
    {
        var bt_em_button = document.getElementById('bt_em_button');
        bt_em_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em_on.gif';       
    }
    this.el_words.style.fontStyle = this.font_style;
    this.el_words.focus();
    setCookie('pfc_font_style', this.font_style);
  },
 
  makeUnderline: function()
  {
      this.font_decoration = 'underline';
    fcookie = getCookie('pfc_font_decoration');
    if (fcookie == 'underline')
    {
        this.font_decoration = 'none';
        var bt_ins_button = document.getElementById('bt_ins_button');
        bt_ins_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins.gif';       
    } else
    {
        var bt_ins_button = document.getElementById('bt_ins_button');
        bt_ins_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins_on.gif';
    }
    this.el_words.style.textDecoration = this.font_decoration;
    this.el_words.focus();
    setCookie('pfc_font_decoration', this.font_decoration);
  },

/themes/default/chat.html.tpl.php (replace everything after <div id="pfc_bbcode_container"> (line 105) and before <div id="pfc_errors"></div> line (161) with this:)

Code: Select all
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_strong.gif'); ?>"
             alt="<?php echo _pfc("Bold"); ?>"
             title="<?php echo _pfc("Bold"); ?>"
             class="pfc_bt_strong"
             id="bt_strong_button"
             onclick="pfc.makeBold()" />
      </div>
      <div class="pfc_btn">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_em.gif'); ?>"
             alt="<?php echo _pfc("Italics"); ?>"
             title="<?php echo _pfc("Italics"); ?>"
             class="pfc_bt_strong"
             id="bt_em_button"
             onclick="pfc.makeItalic()" />
      </div>
      <div class="pfc_btn">
     
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_ins.gif'); ?>"
             alt="<?php echo _pfc("Underline"); ?>"
             title="<?php echo _pfc("Underline"); ?>"
             class="pfc_bt_strong"
             id="bt_ins_button"
             onclick="pfc.makeUnderline()" />
      </div>
     
      <div id="pfc_colorlist"></div>
      <div class="pfc_btn" style="visibility: hidden;">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_color.gif'); ?>"
             alt="<?php echo _pfc("Color"); ?>"
             title="<?php echo _pfc("Color"); ?>"
             id="pfc_bt_color"
             onclick="pfc.minimize_maximize('pfc_colorlist','inline')" onload="updateElements();" />
      </div>
    </div> <!-- pfc_bbcode_container -->
   
    <div class="pfc_btn" style="visibility: hidden;">
        <img src="<?php echo $c->getFileUrlFromTheme('images/bt_mail.gif'); ?>"
             alt="<?php echo _pfc("Mail"); ?>"
             title="<?php echo _pfc("Mail"); ?>"
             class="pfc_bt_strong"
             onclick="pfc.insert_text('[email]','[/email]',true)" />
    </div>
  </div>

/themes/default/chat.js.tpl.php (insert at line 75) after this:

Code: Select all
Event.observe(window, 'load', function() {
  pfc = new pfcClient();
  if (pfc_isready) pfc.loadChat(pfc_theme);
});

Insert this:

Code: Select all
function updateElements()
  {
      var pfc_words = document.getElementById('pfc_words');
      var bold_button = document.getElementById('bt_strong_button');
      var bold_cookie = getCookie('pfc_font_weight');
      if (bold_cookie == 'bold') {
          bold_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_strong_on.gif';
          pfc_words.style.fontWeight = 'bold';
      }
      var italic_button = document.getElementById('bt_em_button');
      var italic_cookie = getCookie('pfc_font_style');
      if (italic_cookie == 'italic') {
          italic_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_em_on.gif';
          pfc_words.style.fontStyle = 'italic';       
      }
       var underline_button = document.getElementById('bt_ins_button');
      var underline_cookie = getCookie('pfc_font_decoration');
      if (underline_cookie == 'underline') {
          underline_button.src = 'http://www.bokcirklar.se/phpfreechat/themes/default/images/bt_ins_on.gif';
          pfc_words.style.textDecoration = 'underline';         
      }
      pfc.minimize_maximize('pfc_colorlist','inline');
  }
spoonfed
Member
 
Posts: 10
Joined: Wed Jul 18, 2007 12:56 pm
Top

Postby Kelly » Thu May 14, 2009 12:44 pm

I love this modification and am hoping it makes it into the next release. I really believe it should be a core function to make the chat easier for folks to use. Beyond being convenient, it increases accessibility for those with poor eyesight.

At any rate, I followed the instructions exactly, (by following the code rather than the line numbers due to the recent changes), but after making the changes - my chat would no longer display.

The only thing on the screen was the "Chat loading, please wait" (even after the page was done loading), and the phpfreechat logo. I rehashed, cleared my browser cache, and reloaded the page several times. I even let it sit over night and checked the next day in case there was some kind of delay with my server cache.

No luck. I've since removed the code.

It has been my experience that when pages completely disappear, there's a syntax error somewhere. But I see that others have successfully used this with version 1.2, which is what I'm using...so I'm thinking I've made an error somewhere.

I know it's difficult to diagnose without additional information, but I'm not sure what to provide short of pasting in all the code.

Some forums become annoyed when that much code is inserted, so I'll wait to post it until asked.

In the meantime, does anyone have any suggestions where I might begin to look for the problem?

Thanks :)
Kelly
Member
 
Posts: 20
Joined: Thu May 07, 2009 4:59 am
Top

Postby CodezStar » Tue Mar 01, 2011 4:00 pm

It works great with the version 1.3 also. But when you choose B it says BOLD meaning i will need to put a ON image there so if i want to take it out it can let me. That is the only problem but other then that. ITS GREAT!!!
CodezStar
New member
 
Posts: 6
Joined: Tue Mar 01, 2011 3:25 pm
Top

Postby CodezStar » Tue Mar 01, 2011 4:16 pm

for those who dont know how to edit the images.

Just go to

/data/public/js/pfcclient.js at line 2071 until 2114

edit the files that says...

http://www.bokcirklar.se/phpfreechat/th ... ins_on.gif
and theres more so its up to you what to put there.

You can just go to your /theme/default/images/ folder there look for the images or upload it there and thats it :)
CodezStar
New member
 
Posts: 6
Joined: Tue Mar 01, 2011 3:25 pm
Top

Postby DaNGuS » Fri Nov 25, 2011 9:06 pm

works perfectly, just updated lines, rehashed and changed few lines to imgaes, and its perfectly changed those boxes poping out whenever you want to change texst stile. I recomend to integrade this to the oficial script files.
Thanks a lot for this spoonfed!
DaNGuS
Member
 
Posts: 20
Joined: Fri Nov 11, 2011 9:33 am
Top

Re: Real-time bold,italic and underline changes

Postby zeeshan » Wed Dec 19, 2012 10:59 am

On your demo, the color tab is automatically displayed but even with everything working on my own tests, it is not.
And since you have hide the button, it can't be shown manually.
:D :) :( :o :shock:
http://www.photographyartists.eu
zeeshan
New member
 
Posts: 1
Joined: Tue Dec 04, 2012 6:35 am
Top


Post a reply
14 posts • Page 1 of 1

Return to Contributions (v1.x)

Who is online

Users browsing this forum: No registered users and 18 guests

  • Board index
  • The team • Delete all board cookies • All times are UTC + 1 hour
Powered by phpBB® Forum Software © phpBB Group
Sign in
Wrong credentials
Sign up I forgot my password
.
jeu-gratuit.net | more partners
Fork me on GitHub