diff --git plugins/drupalbreaks/plugin.js plugins/drupalbreaks/plugin.js
index 728da0c..49a9129 100644
--- plugins/drupalbreaks/plugin.js
+++ plugins/drupalbreaks/plugin.js
@@ -35,22 +35,20 @@ CKEDITOR.plugins.add( 'drupalbreaks',
 		);
 
 		// Register the toolbar buttons.
-		if ( Drupal.ckeditorTeaserInfo(editor.name) || Drupal.settings.ckeditor.teaser == editor.name ) {
-			editor.ui.addButton( 'DrupalBreak',
-				{
-					label : Drupal.t('Insert Teaser Break'),
-					icon : this.path + 'images/drupalbreak.png',
-					command : 'drupalbreak'
-				});
+		editor.ui.addButton( 'DrupalBreak',
+			{
+				label : Drupal.t('Insert Teaser Break'),
+				icon : this.path + 'images/drupalbreak.png',
+				command : 'drupalbreak'
+			});
 
-			if ( Drupal.settings.ckeditor.pagebreak ) {
-				editor.ui.addButton( 'DrupalPageBreak',
-						{
-							label : Drupal.t( 'Insert Page Break' ),
-							icon : this.path + 'images/drupalpagebreak.png',
-							command : 'drupalpagebreak'
-						});
-			}
+		if ( Drupal.settings.ckeditor.pagebreak ) {
+			editor.ui.addButton( 'DrupalPageBreak',
+					{
+						label : Drupal.t( 'Insert Page Break' ),
+						icon : this.path + 'images/drupalpagebreak.png',
+						command : 'drupalpagebreak'
+					});
 		}
 
 		// Register the commands.
