http://www.mediawiki.org/wiki/Special:Code/MediaWiki/89133
Revision: 89133
Author: jeroendedauw
Date: 2011-05-29 19:48:12 +0000 (Sun, 29 May 2011)
Log Message:
-----------
added missing semicolons
Modified Paths:
--------------
trunk/extensions/SemanticWatchlist/specials/jquery.watchlistcondition.js
Modified:
trunk/extensions/SemanticWatchlist/specials/jquery.watchlistcondition.js
===================================================================
--- trunk/extensions/SemanticWatchlist/specials/jquery.watchlistcondition.js
2011-05-29 19:44:47 UTC (rev 89132)
+++ trunk/extensions/SemanticWatchlist/specials/jquery.watchlistcondition.js
2011-05-29 19:48:12 UTC (rev 89133)
@@ -163,29 +163,29 @@
}
} )
);
- }
+ };
this.addPropertyDiv = function( property ) {
var propDiv = $( '<div />' ).attr( 'class', 'propid' );
-
+
var propInput = $( '<input />' ).attr( {
'type': 'text',
'value': property,
'size': 30,
'class': 'swl-group-prop'
} );
-
+
var removeButton = $( '<input />' ).attr( {
'type': 'button',
'value': mediaWiki.msg( 'swl-group-remove-property' )
} );
-
+
removeButton.click( function() {
propDiv.remove();
} );
-
+
this.propsDiv.append( propDiv.html( propInput ).append(
' ' ).append( removeButton ) );
- }
+ };
this.getProperties = function() {
var props = [];
@@ -195,7 +195,7 @@
} );
return props;
- }
+ };
this.doSave = function( callback ) {
var args = {
@@ -215,7 +215,7 @@
callback( data.success );
}
);
- }
+ };
this.doDelete = function( callback ) {
$.getJSON(
@@ -229,7 +229,7 @@
callback( data.success );
}
);
- }
+ };
this.buildHtml();
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs