|
@@ -5,11 +5,13 @@ jQuery(document).ready(function() {
|
|
|
|
|
|
|
|
|
jQuery(document).foundation(function (response) {
|
|
|
- console.log(response.errors);
|
|
|
+ // console.log(response.errors); < this line will produce error in ie9!
|
|
|
+ if (window.console) console.log(response.errors);
|
|
|
});
|
|
|
|
|
|
jQuery('[id^=ca-nstab] a').addClass('icon-file').text(' ' + jQuery('[id^=ca-nstab] a').text());
|
|
|
jQuery('li#ca-talk a').addClass('icon-comments').text(' ' + jQuery('li#ca-talk a').text());
|
|
|
+ jQuery('li#ca-talk.new a').addClass('icon-comments-alt').text(' ' + jQuery('li#ca-talk.new a').text());
|
|
|
jQuery('li#ca-edit a').addClass('icon-edit').text(' ' + jQuery('li#ca-edit a').text());
|
|
|
jQuery('li#ca-viewsource a').addClass('icon-book').text(' ' + jQuery('li#ca-viewsource a').text());
|
|
|
jQuery('li#ca-form_edit a').addClass('icon-edit-sign').text(' ' + jQuery('li#ca-form_edit a').text());
|