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
| <VirtualHost *:80> | |
| ServerName local.scriball.com | |
| DocumentRoot /web/Scriball-FrontEnd/scriball/public | |
| SetEnv APPLICATION_ENV dev2 | |
| RewriteEngine on | |
| <Directory /web/Scriball-FrontEnd/scriball/public> | |
| Options Indexes IncludesNOEXEC FollowSymLinks -MultiViews | |
| AllowOverride All | |
| Order allow,deny |
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
| getline(fd, pav, ','); fd >> ws; | |
| cout << pav << endl; | |
| getline(fd, degalai, ','); | |
| fd >> sąnaudos; | |
| A[i].Dėti(pav, degalai, sąnaudos); |
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
| function init() { | |
| hover = false; | |
| angle = 0; | |
| canvas = document.getElementById("mainStage"); | |
| stage = new createjs.Stage(canvas); | |
| createjs.Ticker.setFPS(30); | |
| createjs.Ticker.addEventListener("tick", tick); | |
| stage.enableMouseOver(10); | |
| planet1.addEventListener("mouseover", manageMouseOver); | |
| planet1.addEventListener("mouseout", manageMouseOut); |
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
| fpsLabel = new createjs.Text("-- fps", "bold 18px Arial", "#000000"); | |
| stage.addChild(fpsLabel); | |
| fpsLabel.x = 10; | |
| fpsLabel.y = 20; | |
| stage.addChild(fpsLabel); | |
| function tick(event) { | |
| fpsLabel.text = Math.round(createjs.Ticker.getMeasuredFPS()) + " fps"; | |
| } |
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
| $(document).ready(function(){ | |
| $('.more_products').click(function(){ | |
| $('.flipper:nth-child(3)').slideToggle(); | |
| $('.flipper:nth-child(4)').slideToggle(); | |
| $('.more_products').css("top", "70%"); | |
| }); | |
| }); |
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
| add_theme_support('menus'); | |
| add_theme_support('post-thumbnails'); | |
| add_action('init', 'register_my_menus'); | |
| function register_my_menus() { | |
| register_nav_menus( | |
| array( | |
| 'primary-menu' => __('Viršutinis meniu'), | |
| 'secondary-menu' => __('Kategoriju meniu') | |
| // 'secondary-menu' => __( 'Pagrindinis meniu' ), |
NewerOlder