Browse Source

class comment update

Nicolas Petton 10 years ago
parent
commit
3dd203c45f
2 changed files with 3 additions and 0 deletions
  1. 1 0
      js/Moka-Controllers.js
  2. 2 0
      st/Moka-Controllers.st

+ 1 - 0
js/Moka-Controllers.js

@@ -3,6 +3,7 @@ smalltalk.addPackage('Moka-Controllers');
 smalltalk.packages["Moka-Controllers"].transport = {"type":"amd","amdNamespace":"amber_core"};
 
 smalltalk.addClass('MKAnyKeyInputController', smalltalk.MKAspectController, ['lastValue'], 'Moka-Controllers');
+smalltalk.MKAnyKeyInputController.comment="I am the default controller for `MKTextAreaView`. Actions are performed on any key press if the view's value changes.";
 smalltalk.addMethod(
 smalltalk.method({
 selector: "inputText",

+ 2 - 0
st/Moka-Controllers.st

@@ -2,6 +2,8 @@ Smalltalk current createPackage: 'Moka-Controllers'!
 MKAspectController subclass: #MKAnyKeyInputController
 	instanceVariableNames: 'lastValue'
 	package: 'Moka-Controllers'!
+!MKAnyKeyInputController commentStamp!
+I am the default controller for `MKTextAreaView`. Actions are performed on any key press if the view's value changes.!
 
 !MKAnyKeyInputController methodsFor: 'accessing'!