This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="small-1 small-centered columns"> | |
<range-slider vertical></range-slider> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="small-7 medium-9 columns"> | |
<range-slider ng-init="horizontalTwoWay=13.37" ng-model="horizontalTwoWay"></range-slider> | |
</div> | |
<div class="small-2 medium-1 columns"> | |
{{ horizontalTwoWay }} | |
</div> | |
<div class="small-3 medium-2 columns"> | |
<input type="number" ng-model="horizontalTwoWay"> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-init="showHide = 15;"> | |
<div class="row"> | |
<div class="small-8 medium-10 columns"> | |
<range-slider ng-model="showHide"></range-slider> | |
</div> | |
<div class="small-4 medium-2 columns"> | |
<input type="number" ng-model="showHide"> | |
</div> | |
</div> | |
<div class="row"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-init="a = 10; b = 350; c = 0.5; value = 35;"> | |
<div class="row"> | |
<div class="medium-8 small-6 columns"> | |
<range-slider min="a" max="b * 2" step="c / 3" ng-model="value"></range-slider> | |
</div> | |
<div class="medium-4 small-6 columns"> | |
<input type="number" ng-model="value"> | |
</div> | |
</div> | |
<div class="row"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdlib> | |
#include <iostream> | |
#include <vector> | |
#include <string.h> | |
using namespace std; | |
static inline int64_t neg_cpp(int64_t a) { |
OlderNewer