r92033 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r92032‎ | r92033 | r92034 >
Date:00:18, 13 July 2011
Author:tparscal
Status:deferred
Tags:
Comment:
Added big
Modified paths:
  • /trunk/parsers/wikidom/demos/es/index.html (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.Content.js (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.Surface.css (modified) (history)

Diff [purge]

Index: trunk/parsers/wikidom/lib/es/es.Surface.css
@@ -67,6 +67,10 @@
6868 text-decoration: underline;
6969 }
7070
 71+.editSurface-format-big {
 72+ font-size: 1.2em;
 73+}
 74+
7175 .editSurface-format-small,
7276 .editSurface-format-sub,
7377 .editSurface-format-super {
Index: trunk/parsers/wikidom/lib/es/es.Content.js
@@ -126,14 +126,18 @@
127127 'open': '<span class="editSurface-format-small">',
128128 'close': '</span>',
129129 },
130 - 'super': {
131 - 'open': '<span class="editSurface-format-super">',
 130+ 'big': {
 131+ 'open': '<span class="editSurface-format-big">',
132132 'close': '</span>',
133133 },
134134 'sub': {
135135 'open': '<span class="editSurface-format-sub">',
136136 'close': '</span>',
137137 },
 138+ 'super': {
 139+ 'open': '<span class="editSurface-format-super">',
 140+ 'close': '</span>',
 141+ },
138142 'xlink': {
139143 'open': function( data ) {
140144 return '<span class="editSurface-format-xlink" data-href="' + data.href + '">';
Index: trunk/parsers/wikidom/demos/es/index.html
@@ -40,6 +40,10 @@
4141 <div class="es-toolbarTool" id="es-toolbar-bold"><img src="images/bold.png"></div>
4242 <div class="es-toolbarTool" id="es-toolbar-italic"><img src="images/italic.png"></div>
4343 <div class="es-toolbarTool" id="es-toolbar-link"><img src="images/link.png"></div>
 44+ <div class="es-toolbarTool" id="es-toolbar-small"><img src="images/small.png"></div>
 45+ <div class="es-toolbarTool" id="es-toolbar-big"><img src="images/big.png"></div>
 46+ <div class="es-toolbarTool" id="es-toolbar-sub"><img src="images/sub.png"></div>
 47+ <div class="es-toolbarTool" id="es-toolbar-super"><img src="images/super.png"></div>
4448 <div class="es-toolbarTool" id="es-toolbar-clear"><img src="images/clear.png"></div>
4549 <div style="clear:both"></div>
4650 </div>
@@ -114,6 +118,30 @@
115119 'type': 'italic'
116120 } );
117121 } );
 122+ $( '#es-toolbar-small' ).click( function() {
 123+ surface.annotateContent( {
 124+ 'method': 'toggle',
 125+ 'type': 'small'
 126+ } );
 127+ } );
 128+ $( '#es-toolbar-big' ).click( function() {
 129+ surface.annotateContent( {
 130+ 'method': 'toggle',
 131+ 'type': 'big'
 132+ } );
 133+ } );
 134+ $( '#es-toolbar-sub' ).click( function() {
 135+ surface.annotateContent( {
 136+ 'method': 'toggle',
 137+ 'type': 'sub'
 138+ } );
 139+ } );
 140+ $( '#es-toolbar-super' ).click( function() {
 141+ surface.annotateContent( {
 142+ 'method': 'toggle',
 143+ 'type': 'super'
 144+ } );
 145+ } );
118146 $( '#es-toolbar-link' ).click( function() {
119147 surface.annotateContent( {
120148 'method': 'toggle',

Status & tagging log