diff --git a/core/mci_view_factory.js b/core/mci_view_factory.js index b628b56e..de869b2d 100644 --- a/core/mci_view_factory.js +++ b/core/mci_view_factory.js @@ -33,7 +33,6 @@ MCIViewFactory.UserViewCodes = [ 'ET', 'ME', 'MT', - 'PL', 'BT', 'VM', 'HM', @@ -129,21 +128,6 @@ MCIViewFactory.prototype.createFromMCI = function (mci) { view = new MultiLineEditTextView(options); break; - // Pre-defined Label (Text View) - // :TODO: Currently no real point of PL -- @method replaces this pretty much... probably remove - case 'PL': - if (mci.args.length > 0) { - options.text = getPredefinedMCIValue(this.client, mci.args[0]); - if (options.text) { - setOption(1, 'textStyle'); - setOption(2, 'justify'); - setWidth(3); - - view = new TextView(options); - } - } - break; - // Button case 'BT': if (mci.args.length > 0) {