From b53c707961a7c2bfca147d4e2ce52c9a6f8aae40 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 9 Oct 2013 20:14:29 -0500 Subject: [PATCH] Button type and text --- dist/ionic-angular.js | 2 +- js/ext/angular/src/directive/ionicList.js | 2 +- js/ext/angular/test/list.html | 12 ++++++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dist/ionic-angular.js b/dist/ionic-angular.js index 567725421d..b8786f532b 100644 --- a/dist/ionic-angular.js +++ b/dist/ionic-angular.js @@ -194,7 +194,7 @@ angular.module('ionic.ui.list', ['ionic.service']) '
' + '
' + '
' + - ' ' + + ' ' + '
' + '', link: function($scope, $element, $attr) { diff --git a/js/ext/angular/src/directive/ionicList.js b/js/ext/angular/src/directive/ionicList.js index 761c294546..605028884c 100644 --- a/js/ext/angular/src/directive/ionicList.js +++ b/js/ext/angular/src/directive/ionicList.js @@ -12,7 +12,7 @@ angular.module('ionic.ui.list', ['ionic.service']) '
' + '
' + '
' + - ' ' + + ' ' + '
' + '', link: function($scope, $element, $attr) { diff --git a/js/ext/angular/test/list.html b/js/ext/angular/test/list.html index 93d5a78f0f..f278d85add 100644 --- a/js/ext/angular/test/list.html +++ b/js/ext/angular/test/list.html @@ -91,7 +91,8 @@ canSwipe: true, icon: 'icon-chevron-right', buttons: [{ - text: 'Kill' + text: 'Kill', + type: 'button-danger' }] }, { @@ -100,7 +101,8 @@ canSwipe: true, icon: 'icon-chevron-right', buttons: [{ - text: 'Kill' + text: 'Kill', + type: 'button-danger' }] }, { @@ -109,7 +111,8 @@ canSwipe: true, icon: 'icon-chevron-right', buttons: [{ - text: 'Kill' + text: 'Kill', + type: 'button-danger' }] }, { @@ -118,7 +121,8 @@ canSwipe: true, icon: 'icon-chevron-right', buttons: [{ - text: 'Kill' + text: 'Kill', + type: 'button-danger' }] } ];