adding magic to buttons on framer [ci skip]
This commit is contained in:
parent
fb4ad72378
commit
7309114136
3 changed files with 3 additions and 2 deletions
|
|
@ -44,6 +44,7 @@ app.views.framerControls = app.views.Base.extend({
|
|||
|
||||
saveFrame : function(){
|
||||
this.$('button').prop('disabled', 'disabled')
|
||||
this.$('button').addClass('disabled')
|
||||
// this is gross hack to make this action work in the iframe version and not iframe version.
|
||||
var callback = {}
|
||||
var parentDoc = parent;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div id='controls-wrapper'>
|
||||
<button class="done btn-primary next">Next</button>
|
||||
<button class="done btn btn-primary next">Next <i class="icon-arrow-right icon-white"></i></button>
|
||||
<div class="aspect-selector"/>
|
||||
<div class="service-selector"/>
|
||||
</div>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<div id='controls-wrapper'>
|
||||
<button class="done btn-primary">done</button>
|
||||
<button class="done btn btn-success">Post <i class='icon-white icon-ok-sign'></i></button>
|
||||
<div class='template-picker'></div>
|
||||
</div>
|
||||
Loading…
Reference in a new issue